From: Chris Lattner Date: Mon, 13 Feb 2006 23:07:02 +0000 (+0000) Subject: new testcase X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1f7b4e685e6ae751519c33d703d8292a117579ff;p=oota-llvm.git new testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26154 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/and.ll b/test/Transforms/InstCombine/and.ll index dce91d7038b..ed6d26b9f73 100644 --- a/test/Transforms/InstCombine/and.ll +++ b/test/Transforms/InstCombine/and.ll @@ -220,3 +220,9 @@ uint %test33(uint %b) { ;; Code corresponding to one-bit bitfield ^1. ret uint %tmp.13 } +int %test34(int %A, int %B) { + %tmp.2 = or int %B, %A + %tmp.4 = and int %tmp.2, %B + ret int %tmp.4 +} +