From: Chris Lattner Date: Wed, 23 Jul 2003 17:25:55 +0000 (+0000) Subject: New testcase X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=347319a4c90abdfa333a247f892e86497c38e7bd;p=oota-llvm.git New testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7259 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/or.ll b/test/Transforms/InstCombine/or.ll index a9863db935a..e89009547ba 100644 --- a/test/Transforms/InstCombine/or.ll +++ b/test/Transforms/InstCombine/or.ll @@ -112,3 +112,8 @@ False: ret ubyte 3 } +bool %test19(ubyte %A) { + %B = xor ubyte %A, 123 ; xor can be eliminated + %C = seteq ubyte %B, 34 + ret bool %C +}