Add remaining AVX instructions (most of them dealing with GR64 destinations. This...
[oota-llvm.git] / test / FrontendC / 2003-06-22-UnionCrash.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3 struct Blend_Map_Entry {
4   union {
5    float Colour[5];
6    double Point_Slope[2];
7   } Vals;
8 };
9
10 void test(struct Blend_Map_Entry* Foo)
11 {
12 }
13