Tanya Lattner | e9af5d1 | 2004-11-06 22:41:00 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null |
2 | |||||
Chris Lattner | ba38fe6 | 2003-06-22 21:40:38 +0000 | [diff] [blame] | 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 |