From: Chris Lattner Date: Tue, 26 Jul 2005 22:08:53 +0000 (+0000) Subject: Testcase for PR607 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=50e9ef8792c5c91b7ea6f24f878d1abbcb6024a4;p=oota-llvm.git Testcase for PR607 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22519 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CFrontend/2005-07-26-UnionInitCrash.c b/test/CFrontend/2005-07-26-UnionInitCrash.c new file mode 100644 index 00000000000..563278a9c68 --- /dev/null +++ b/test/CFrontend/2005-07-26-UnionInitCrash.c @@ -0,0 +1,3 @@ +// PR607 +// RUN: %llvmgcc %s -S -o - +union { char bytes[8]; double alignment; }EQ1 = {0,0,0,0,0,0,0,0};