]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/961213-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 961213-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/961213-1.c b/gcc/testsuite/gcc.c-torture/execute/961213-1.c
deleted file mode 100644 (file)
index 12bb27f..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-int
-g (unsigned long long int *v, int n, unsigned int a[], int b)
-{
-  int cnt;
-  *v = 0;
-  for (cnt = 0; cnt < n; ++cnt)
-    *v = *v * b + a[cnt];
-  return n;
-}
-
-main ()
-{
-  int res;
-  unsigned int ar[] = { 10, 11, 12, 13, 14 };
-  unsigned long long int v;
-
-  res = g (&v, sizeof(ar)/sizeof(ar[0]), ar, 16);
-  if (v != 0xabcdeUL)
-    abort ();
-
-  exit (0);
-}