aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-16 21:20:27 +0000
committerChris Lattner <sabre@nondot.org>2007-04-16 21:20:27 +0000
commit05c34253f5159888eece2f42066ad9361889b1b6 (patch)
tree901c694ec48ac1bb7793118bc4337d9dbbe71759 /test/CFrontend
parent3724df3132417794105b0d523568b88e320f1e59 (diff)
downloadexternal_llvm-05c34253f5159888eece2f42066ad9361889b1b6.zip
external_llvm-05c34253f5159888eece2f42066ad9361889b1b6.tar.gz
external_llvm-05c34253f5159888eece2f42066ad9361889b1b6.tar.bz2
remove bogus test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36166 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CFrontend')
-rw-r--r--test/CFrontend/cast-to-bool.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CFrontend/cast-to-bool.c b/test/CFrontend/cast-to-bool.c
deleted file mode 100644
index 5d6c20a..0000000
--- a/test/CFrontend/cast-to-bool.c
+++ /dev/null
@@ -1,17 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | grep {trunc.*to i8}
-// RUN: %llvmgcc -S %s -o - | llvm-as | opt -instcombine | llc -march=x86 | \
-// RUN: grep {test.*1}
-int
-main ( int argc, char** argv)
-{
- int i;
- int result = 1;
- for (i = 2; i <= 3; i++)
- {
- if ((i & 1) == 0)
- {
- result = result + 17;
- }
- }
- return result;
-}