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, 8 insertions, 0 deletions
diff --git a/test/FrontendC/2003-08-20-BadBitfieldRef.c b/test/FrontendC/2003-08-20-BadBitfieldRef.c new file mode 100644 index 0000000..ef54d8a --- /dev/null +++ b/test/FrontendC/2003-08-20-BadBitfieldRef.c @@ -0,0 +1,8 @@ +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null + +void foo() +{ + char *ap; + ap[1] == '-' && ap[2] == 0; +} + |