Make the testcase more interesting

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7961 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-08-18 21:44:10 +00:00
parent 04aa29d7bf
commit 134480cb1b

View File

@ -4,6 +4,6 @@ typedef struct {
} event_t;
event_t test(int X) {
event_t foo, bar;
event_t foo = { 1 }, bar = { 2 };
return X ? foo : bar;
}