]> git.proxmox.com Git - rustc.git/blame - src/llvm/tools/clang/test/CodeGen/2003-06-22-UnionCrash.c
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / CodeGen / 2003-06-22-UnionCrash.c
CommitLineData
223e47cc
LB
1// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
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