diff options
Diffstat (limited to 'test/FrontendC/2003-08-17-DeadCodeShortCircuit.c')
-rw-r--r-- | test/FrontendC/2003-08-17-DeadCodeShortCircuit.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/FrontendC/2003-08-17-DeadCodeShortCircuit.c b/test/FrontendC/2003-08-17-DeadCodeShortCircuit.c deleted file mode 100644 index 9ae633e..0000000 --- a/test/FrontendC/2003-08-17-DeadCodeShortCircuit.c +++ /dev/null @@ -1,7 +0,0 @@ -// RUN: %llvmgcc -xc %s -S -o %t.o - -int test(_Bool pos, _Bool color) { - return 0; - return (pos && color); -} - |