[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / PowerPC / dscr-set.ll
blob8948dde666ae540392d3b46aee5160b51f079c47
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu -mcpu=pwr9 \
2 ; RUN:     | FileCheck %s -check-prefix=DEFAULT
3 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu -mcpu=pwr9 \
4 ; RUN:     -ppc-set-dscr=0xFFFFFFFFFFFFFFFF | FileCheck %s -check-prefix=UPPER
5 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu -mcpu=pwr9 \
6 ; RUN:     -ppc-set-dscr=0x01C4 | FileCheck %s -check-prefix=LOWER
8 define i32 @main() {
10 ; CHECK:           # %bb.0:
12 ; DEFAULT-NOT:     mtudscr
14 ; UPPER:           lis [[inReg:[0-9]+]], 511
15 ; UPPER-NEXT:      ori [[inReg]], [[inReg]], 65535
16 ; UPPER-NEXT:      mtudscr [[inReg]]
18 ; LOWER:           lis [[inReg:[0-9]+]], 0
19 ; LOWER-NEXT:      ori [[inReg]], [[inReg]], 452
20 ; LOWER-NEXT:      mtudscr [[inReg]]
22        ret i32 1