1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 13:33:37 +02:00
llvm-mirror/test/Regression/CFrontend/2003-06-22-UnionCrash.c
Chris Lattner 74dfa46dfb New testcase narrowed down by Joel
llvm-svn: 6858
2003-06-22 21:40:38 +00:00

12 lines
139 B
C

struct Blend_Map_Entry {
union {
float Colour[5];
double Point_Slope[2];
} Vals;
};
void test(struct Blend_Map_Entry* Foo)
{
}