]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/llbug.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / llbug.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/llbug.c b/gcc/testsuite/gcc.c-torture/unsorted/llbug.c
deleted file mode 100644 (file)
index 8c56dfb..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-union foo
-{
-  long long  d;
-};
-
-int
-bar (long long d)
-{
-  union foo u;
-
-  u.d = d;
-  return (int) &u;
-}