diff options
Diffstat (limited to 'test/FrontendC/2003-06-22-UnionCrash.c')
-rw-r--r-- | test/FrontendC/2003-06-22-UnionCrash.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/FrontendC/2003-06-22-UnionCrash.c b/test/FrontendC/2003-06-22-UnionCrash.c deleted file mode 100644 index 54d8dc6..0000000 --- a/test/FrontendC/2003-06-22-UnionCrash.c +++ /dev/null @@ -1,13 +0,0 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null - -struct Blend_Map_Entry { - union { - float Colour[5]; - double Point_Slope[2]; - } Vals; -}; - -void test(struct Blend_Map_Entry* Foo) -{ -} - |