From 0bf507947652b7dd9a301f0bda436d6f7b8987a3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 2 Mar 2008 17:56:29 +0000 Subject: Evan implemented this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47827 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/PowerPC/rlwimi-commute.ll | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/CodeGen/PowerPC/rlwimi-commute.ll') 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 @@ define void @test2(i32* %A, i32* %B, i32* %D, i32* %E) { store i32 %B.upgrd.4, i32* %E ret void } + +define i32 @test3(i32 %a, i32 %b) { + %tmp.1 = and i32 %a, 15 ; [#uses=1] + %tmp.3 = and i32 %b, 240 ; [#uses=1] + %tmp.4 = or i32 %tmp.3, %tmp.1 ; [#uses=1] + ret i32 %tmp.4 +} + -- cgit v1.1