[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / PowerPC / lbz-from-ld-shift.ll
blob1b4f2a55f6359b706deaf3485ec26172d7790cb1
1 ; RUN: llc -verify-machineinstrs -mcpu=ppc64 < %s | FileCheck %s
2 target datalayout = "E-m:e-i64:64-n32:64"
3 target triple = "powerpc64-unknown-linux-gnu"
5 ; Function Attrs: nounwind readonly
6 define signext i32 @test(i32* nocapture readonly %P) #0 {
7 entry:
8   %0 = load i32, i32* %P, align 4
9   %shr = lshr i32 %0, 24
10   ret i32 %shr
12 ; CHECK-LABEL: @test
13 ; CHECK: lbz 3, 0(3)
14 ; CHECK: blr
17 attributes #0 = { nounwind readonly }