diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-02 17:56:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-02 17:56:29 +0000 |
commit | bd0bb3f07f01bb0bafaac71def522df42e75cc8c (patch) | |
tree | 190df27d870d8ed47ea812dca3644fa1d3adfb91 /llvm/test/CodeGen/PowerPC/rlwimi-commute.ll | |
parent | a8b5ed8d3a299ff5f76ddbfed2770d84ab0c7d1c (diff) | |
download | bcm5719-llvm-bd0bb3f07f01bb0bafaac71def522df42e75cc8c.tar.gz bcm5719-llvm-bd0bb3f07f01bb0bafaac71def522df42e75cc8c.zip |
Evan implemented this.
llvm-svn: 47827
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/rlwimi-commute.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/rlwimi-commute.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/PowerPC/rlwimi-commute.ll b/llvm/test/CodeGen/PowerPC/rlwimi-commute.ll index ed2e7b0c297..f8a42b51420 100644 --- a/llvm/test/CodeGen/PowerPC/rlwimi-commute.ll +++ b/llvm/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 ; <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 +} + |