]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/991202-3.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 991202-3.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/991202-3.c b/gcc/testsuite/gcc.c-torture/execute/991202-3.c
deleted file mode 100644 (file)
index f5718b2..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-
-unsigned int f (unsigned int a)
-{
-  return a * 65536 / 8;
-}
-
-unsigned int g (unsigned int a)
-{
-  return a * 65536;
-}
-
-unsigned int h (unsigned int a)
-{
-  return a / 8;
-}
-
-int main ()
-{
-  if (f (65536) != h (g (65536)))
-    abort ();
-  exit (0);
-}