summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-30 22:43:10 +0000
committerChris Lattner <sabre@nondot.org>2006-01-30 22:43:10 +0000
commita0bb4f749a7b6bf07c5f6dc6c5fbee6018d33914 (patch)
treedef56355896de32297556f72b7e70fe3c8b6c560 /test
parent2adc05cf5b786d0c82b45b708e01ced8cbf015d9 (diff)
downloadllvm-a0bb4f749a7b6bf07c5f6dc6c5fbee6018d33914.tar.gz
llvm-a0bb4f749a7b6bf07c5f6dc6c5fbee6018d33914.tar.bz2
llvm-a0bb4f749a7b6bf07c5f6dc6c5fbee6018d33914.tar.xz
new testcase for the 'C++' failures last night.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25820 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/2006-01-30-LongSetcc.ll6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2006-01-30-LongSetcc.ll b/test/CodeGen/X86/2006-01-30-LongSetcc.ll
new file mode 100644
index 0000000000..52d25c27a6
--- /dev/null
+++ b/test/CodeGen/X86/2006-01-30-LongSetcc.ll
@@ -0,0 +1,6 @@
+; RUN: llvm-as < %s | llc -march=x86
+
+bool %test(long %X) {
+ %B = setlt long %X, 0 ; <bool> [#uses=1]
+ ret bool %B
+}