From: Chris Lattner Date: Mon, 30 Jan 2006 22:43:10 +0000 (+0000) Subject: new testcase for the 'C++' failures last night. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a0bb4f749a7b6bf07c5f6dc6c5fbee6018d33914;p=oota-llvm.git 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 --- 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 00000000000..52d25c27a65 --- /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 ; [#uses=1] + ret bool %B +}