• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 struct Blend_Map_Entry {
4   union {
5    float Colour[5];
6    double Point_Slope[2];
7   } Vals;
8 };
9 
test(struct Blend_Map_Entry * Foo)10 void test(struct Blend_Map_Entry* Foo)
11 {
12 }
13 
14