[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / Hexagon / local-exec.ll
blob36f73efe4f366fc6bfcfd79a259cc914b8ad20b6
1 ; RUN: llc -march=hexagon -O0 < %s | FileCheck %s
3 target triple = "hexagon-unknown--elf"
5 @g0 = internal thread_local(localexec) global i32 0, align 4
6 @g1 = internal thread_local(localexec) global i32 0, align 4
7 ; CHECK: ##g0@{{TPREL|tprel}}
8 ; CHECK: ##g1@{{TPREL|tprel}}
10 ; Function Attrs: nounwind
11 define i32 @f0() #0 {
12 b0:
13   %v0 = alloca i32, align 4
14   %v1 = alloca i32*, align 4
15   store i32 0, i32* %v0
16   store i32* @g0, i32** %v1, align 4
17   %v2 = load i32, i32* @g1, align 4
18   %v3 = load i32*, i32** %v1, align 4
19   store i32 %v2, i32* %v3, align 4
20   ret i32 0
23 attributes #0 = { nounwind }