blob: 54d8dc6dda9a108d9b4b2726bf6cc12aeef1553d [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
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