commit | 3be4893dcecaec7acc21ea445321e27a03ef99b2 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Mar 02 17:56:29 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Mar 02 17:56:29 2008 +0000 |
tree | 4dcd14f8329bf5a1ea977956497c53fc795d6dbe | |
parent | a4239e736734703fce95eb408d525097ae79148d [diff] [blame] |
Evan implemented this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47827 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/PowerPC/rlwimi-commute.ll b/test/CodeGen/PowerPC/rlwimi-commute.ll index ed2e7b0..f8a42b5 100644 --- a/test/CodeGen/PowerPC/rlwimi-commute.ll +++ b/test/CodeGen/PowerPC/rlwimi-commute.ll
@@ -24,3 +24,11 @@ store i32 %B.upgrd.4, i32* %E ret void } + +define i32 @test3(i32 %a, i32 %b) { + %tmp.1 = and i32 %a, 15 ; <i32> [#uses=1] + %tmp.3 = and i32 %b, 240 ; <i32> [#uses=1] + %tmp.4 = or i32 %tmp.3, %tmp.1 ; <i32> [#uses=1] + ret i32 %tmp.4 +} +