diff options
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/rlwinm-zero-ext.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/rlwinm-zero-ext.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/PowerPC/rlwinm-zero-ext.ll b/llvm/test/CodeGen/PowerPC/rlwinm-zero-ext.ll index 282a31b1e27..ccc76e232b6 100644 --- a/llvm/test/CodeGen/PowerPC/rlwinm-zero-ext.ll +++ b/llvm/test/CodeGen/PowerPC/rlwinm-zero-ext.ll @@ -6,7 +6,7 @@ target triple = "powerpc64le-unknown-linux-gnu" define i8 @test1(i32 %a) { entry: ; CHECK-NOT: rlwinm {{{[0-9]+}}}, {{[0-9]+}}, 0, 24, 27 -; CHECK: rlwinm. [[REG:[0-9]+]], {{[0-9]+}}, 0, 24, 27 +; CHECK: andi. [[REG:[0-9]+]], {{[0-9]+}}, 240 ; CHECK-NOT: cmplwi [[REG]], 0 ; CHECK: beq 0 %0 = and i32 %a, 240 |