mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 14:35:54 +00:00
testcase for PR4082
llvm-svn: 70375
This commit is contained in:
parent
414534b3eb
commit
e0b97f682d
11
test/FrontendC/2009-04-28-UnionArrayCrash.c
Normal file
11
test/FrontendC/2009-04-28-UnionArrayCrash.c
Normal file
@ -0,0 +1,11 @@
|
||||
// RUN: %llvmgcc -S %s -o -
|
||||
// PR4082
|
||||
union U {
|
||||
int I;
|
||||
double F;
|
||||
};
|
||||
|
||||
union U arr[] = { { .I = 4 }, { .F = 123.} };
|
||||
union U *P = &arr[0];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user