From: Chris Lattner Date: Wed, 11 Aug 2004 00:49:50 +0000 (+0000) Subject: New testcase that instcombine is getting wrong X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=287433594b635f629409655a0de7a743f7d5d9db;p=oota-llvm.git New testcase that instcombine is getting wrong git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15637 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/2004-08-10-BoolSetCC.ll b/test/Transforms/InstCombine/2004-08-10-BoolSetCC.ll new file mode 100644 index 00000000000..db4735d0b62 --- /dev/null +++ b/test/Transforms/InstCombine/2004-08-10-BoolSetCC.ll @@ -0,0 +1,6 @@ +; RUN: llvm-as < %s| opt -instcombine | llvm-dis | grep 'ret bool false' +bool %test(bool %V) { + %Y = setlt bool %V, false + ret bool %Y +} +