diff options
-rw-r--r-- | test/CFrontend/2003-06-22-UnionCrash.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CFrontend/2003-06-22-UnionCrash.c b/test/CFrontend/2003-06-22-UnionCrash.c new file mode 100644 index 0000000000..e4fb3f068d --- /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) +{ +} + |