diff options
Diffstat (limited to 'test/CFrontend/2003-08-23-LocalUnionTest.c')
-rw-r--r-- | test/CFrontend/2003-08-23-LocalUnionTest.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CFrontend/2003-08-23-LocalUnionTest.c b/test/CFrontend/2003-08-23-LocalUnionTest.c deleted file mode 100644 index dc27802623..0000000000 --- a/test/CFrontend/2003-08-23-LocalUnionTest.c +++ /dev/null @@ -1,11 +0,0 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null - - - -union foo { int X; }; - -int test(union foo* F) { - { - union foo { float X; } A; - } -} |