]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20001228-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20001228-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20001228-1.c b/gcc/testsuite/gcc.c-torture/execute/20001228-1.c
deleted file mode 100644 (file)
index 9c93e79..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-int foo1(void)
-{
-  union {
-    char a[sizeof (unsigned)];
-    unsigned b;
-  } u;
-  
-  u.b = 0x01;
-  return u.a[0];
-}
-
-int foo2(void)
-{
-  volatile union {
-    char a[sizeof (unsigned)];
-    unsigned b;
-  } u;
-  
-  u.b = 0x01;
-  return u.a[0];
-}
-
-int main(void)
-{
-  if (foo1() != foo2())
-    abort ();
-  exit (0);
-}