diff options
Diffstat (limited to 'test/FrontendC/2003-08-20-BadBitfieldRef.c')
-rw-r--r-- | test/FrontendC/2003-08-20-BadBitfieldRef.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/FrontendC/2003-08-20-BadBitfieldRef.c b/test/FrontendC/2003-08-20-BadBitfieldRef.c deleted file mode 100644 index ef54d8a..0000000 --- a/test/FrontendC/2003-08-20-BadBitfieldRef.c +++ /dev/null @@ -1,8 +0,0 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null - -void foo() -{ - char *ap; - ap[1] == '-' && ap[2] == 0; -} - |