diff options
Diffstat (limited to 'test/FrontendC/2009-04-28-UnionArrayCrash.c')
-rw-r--r-- | test/FrontendC/2009-04-28-UnionArrayCrash.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/FrontendC/2009-04-28-UnionArrayCrash.c b/test/FrontendC/2009-04-28-UnionArrayCrash.c deleted file mode 100644 index 75851d0..0000000 --- a/test/FrontendC/2009-04-28-UnionArrayCrash.c +++ /dev/null @@ -1,11 +0,0 @@ -// RUN: %llvmgcc -S %s -o - -// PR4082 -union U { - int I; - double F; -}; - -union U arr[] = { { .I = 4 }, { .F = 123.} }; -union U *P = &arr[0]; - - |