]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20020423-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020423-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20020423-1.c b/gcc/testsuite/gcc.c-torture/execute/20020423-1.c
deleted file mode 100644 (file)
index 5f744b6..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/* PR c/5430 */
-/* Verify that the multiplicative folding code is not fooled
-   by the mix between signed variables and unsigned constants. */
-
-extern void abort (void);
-extern void exit (int);
-
-int main (void)
-{
-  int my_int = 924;
-  unsigned int result;
-
-  result = ((my_int*2 + 4) - 8U) / 2;
-  if (result != 922U)
-    abort();
-         
-  result = ((my_int*2 - 4U) + 2) / 2;
-  if (result != 923U)
-    abort();
-
-  result = (((my_int + 2) * 2) - 8U - 4) / 2;
-  if (result != 920U)
-    abort();
-  result = (((my_int + 2) * 2) - (8U + 4)) / 2;
-  if (result != 920U)
-    abort();
-
-  result = ((my_int*4 + 2U) - 4U) / 2;
-  if (result != 1847U)
-    abort();
-
-  exit(0);
-}