diff options
Diffstat (limited to 'test/FrontendC/2003-08-21-BinOp-Type-Mismatch.c')
-rw-r--r-- | test/FrontendC/2003-08-21-BinOp-Type-Mismatch.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/FrontendC/2003-08-21-BinOp-Type-Mismatch.c b/test/FrontendC/2003-08-21-BinOp-Type-Mismatch.c deleted file mode 100644 index a1d4574..0000000 --- a/test/FrontendC/2003-08-21-BinOp-Type-Mismatch.c +++ /dev/null @@ -1,10 +0,0 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null - -struct bar; - -void foo() -{ - unsigned int frame, focus; - (struct bar *) focus == (focus ? ((struct bar *) frame) : 0); -} - |