]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20020530-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20020530-1.c
diff --git a/gcc/testsuite/gcc.dg/20020530-1.c b/gcc/testsuite/gcc.dg/20020530-1.c
deleted file mode 100644 (file)
index b2d0ecd..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* PR c/6809
-   Test -fverbose-asm with unnamed fields.  */
-/* { dg-do compile } */
-/* { dg-options "-fverbose-asm" } */
-
-typedef union U
-{
-  struct
-  {
-    unsigned int a;
-    int b;
-  };
-  long long c;
-} *T;
-
-int foo (T x)
-{
-  int r = x->a + x->b;
-  return r;
-}