]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/960802-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960802-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/960802-1.c b/gcc/testsuite/gcc.c-torture/execute/960802-1.c
deleted file mode 100644 (file)
index f9ee752..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-long val = 0x5e000000;
-
-long
-f1 (void)
-{
-  return 0x132;
-}
-
-long
-f2 (void)
-{
-  return 0x5e000000;
-}
-
-void
-f3 (long b)
-{
-  val = b;
-}
-
-void
-f4 ()
-{
-  long v = f1 ();
-  long o = f2 ();
-  v = (v & 0x00ffffff) | (o & 0xff000000);
-  f3 (v);
-}
-
-main ()
-{
-  f4 ();
-  if (val != 0x5e000132)
-    abort ();
-  exit (0);
-}