From ba38fe6d02d5c1205a1b5141f847f1696ad82c10 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 22 Jun 2003 21:40:38 +0000 Subject: New testcase narrowed down by Joel git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6858 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CFrontend/2003-06-22-UnionCrash.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/CFrontend/2003-06-22-UnionCrash.c (limited to 'test/CFrontend') diff --git a/test/CFrontend/2003-06-22-UnionCrash.c b/test/CFrontend/2003-06-22-UnionCrash.c new file mode 100644 index 0000000..e4fb3f0 --- /dev/null +++ b/test/CFrontend/2003-06-22-UnionCrash.c @@ -0,0 +1,11 @@ +struct Blend_Map_Entry { + union { + float Colour[5]; + double Point_Slope[2]; + } Vals; +}; + +void test(struct Blend_Map_Entry* Foo) +{ +} + -- cgit v1.1