summaryrefslogtreecommitdiff
path: root/test/FrontendC/2003-06-22-UnionCrash.c
blob: 54d8dc6dda9a108d9b4b2726bf6cc12aeef1553d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null

struct Blend_Map_Entry {
  union {
   float Colour[5];
   double Point_Slope[2];
  } Vals;
};

void test(struct Blend_Map_Entry* Foo)
{
}