[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / Hexagon / gp-plus-offset-store.ll
blob91e412f7c1353b64c34fb36cc1e6ba3c0f55414a
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
2 ; Check that we generate store instructions with global + offset
4 %s.0 = type { i8, i8, i16, i32 }
6 @g0 = common global %s.0 zeroinitializer, align 4
8 ; CHECK-LABEL: f0:
9 ; CHECK: memb(##g0+1) = r{{[0-9]+}}
10 define void @f0(i32 %a0, i32 %a1, i8 zeroext %a2) #0 {
11 b0:
12   %v0 = icmp sgt i32 %a0, %a1
13   br i1 %v0, label %b1, label %b2
15 b1:                                               ; preds = %b0
16   store i8 %a2, i8* getelementptr inbounds (%s.0, %s.0* @g0, i32 0, i32 1), align 1
17   br label %b2
19 b2:                                               ; preds = %b1, %b0
20   ret void
23 ; CHECK-LABEL: f1:
24 ; CHECK: memh(##g0+2) = r{{[0-9]+}}
25 define void @f1(i32 %a0, i32 %a1, i16 signext %a2) #0 {
26 b0:
27   %v0 = icmp sgt i32 %a0, %a1
28   br i1 %v0, label %b1, label %b2
30 b1:                                               ; preds = %b0
31   store i16 %a2, i16* getelementptr inbounds (%s.0, %s.0* @g0, i32 0, i32 2), align 2
32   br label %b2
34 b2:                                               ; preds = %b1, %b0
35   ret void
38 attributes #0 = { nounwind "target-cpu"="hexagonv5" }