2009-08-25 15:38:29 +00:00
|
|
|
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
|
2004-11-06 22:41:00 +00:00
|
|
|
|
2003-06-22 21:40:38 +00:00
|
|
|
struct Blend_Map_Entry {
|
|
|
|
union {
|
|
|
|
float Colour[5];
|
|
|
|
double Point_Slope[2];
|
|
|
|
} Vals;
|
|
|
|
};
|
|
|
|
|
|
|
|
void test(struct Blend_Map_Entry* Foo)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|