diff options
Diffstat (limited to 'test/FrontendC/2006-10-30-ArrayCrash.c')
-rw-r--r-- | test/FrontendC/2006-10-30-ArrayCrash.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/FrontendC/2006-10-30-ArrayCrash.c b/test/FrontendC/2006-10-30-ArrayCrash.c deleted file mode 100644 index 09464dd..0000000 --- a/test/FrontendC/2006-10-30-ArrayCrash.c +++ /dev/null @@ -1,17 +0,0 @@ -// RUN: %llvmgcc -O3 -S -o - %s -// PR954, PR911 - -extern void foo(); - -struct S { - short f1[3]; - unsigned int f2 : 1; -}; - -void bar() -{ - struct S *A; - - if (A->f2) - foo(); -} |