]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000217-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000217-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000217-1.c b/gcc/testsuite/gcc.c-torture/execute/20000217-1.c
deleted file mode 100644 (file)
index 6763da7..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-unsigned short int showbug(unsigned short int *a, unsigned short int *b)
-{
-        *a += *b -8;
-        return (*a >= 8);
-}
-
-int main()
-{
-        unsigned short int x = 0;
-        unsigned short int y = 10;
-
-        if (showbug(&x, &y) != 0)
-         abort (0);
-
-       exit (0);
-}
-