]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/980505-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 980505-2.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/980505-2.c b/gcc/testsuite/gcc.c-torture/execute/980505-2.c
deleted file mode 100644 (file)
index d0d8aa8..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-typedef unsigned short Uint16;
-typedef unsigned int Uint;
-
-Uint f ()
-{
-        Uint16 token;
-        Uint count;
-        static Uint16 values[1] = {0x9300};
-
-        token = values[0];
-        count = token >> 8;
-
-        return count;
-}
-
-int
-main ()
-{
-  if (f () != 0x93)
-    abort ();
-  exit (0);
-}