blob: dab0716ae6304ff2e0b21847a3e815c762afbf63 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3struct Blend_Map_Entry {
4 union {
5 float Colour[5];
6 double Point_Slope[2];
7 } Vals;
8};
9
10void test(struct Blend_Map_Entry* Foo)
11{
12}
13