[X86] combineTargetShuffle - commute VPERMV3 shuffles so any load is on the RHS
[llvm-project.git] / llvm / test / CodeGen / PowerPC / rlwimi-keep-rsh.ll
blobfa04f4fc99410cc6166b2f98ae0cd2e333147189
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
2 ; Formerly dropped the RHS of %tmp6 when constructing rlwimi.
3 ; 7346117
5 @foo = external global i32
7 define void @xxx(i32 %a, i32 %b, i32 %c, i32 %d) nounwind optsize {
8 ; CHECK: xxx:
9 ; CHECK: or
10 ; CHECK: and
11 ; CHECK: rlwimi
12 entry:
13   %tmp0 = ashr i32 %d, 31
14   %tmp1 = and i32 %tmp0, 255
15   %tmp2 = xor i32 %tmp1, 255
16   %tmp3 = ashr i32 %b, 31
17   %tmp4 = ashr i32 %a, 4
18   %tmp5 = or i32 %tmp3, %tmp4
19   %tmp6 = and i32 %tmp2, %tmp5
20   %tmp7 = shl i32 %c, 8
21   %tmp8 = or i32 %tmp6, %tmp7
22   store i32 %tmp8, ptr @foo, align 4
23   br label %return
25 return:
26   ret void
27 ; CHECK: blr