[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / Hexagon / local-exec.ll
blobb57fb6c5bf85e3a5882e47f676d7dac31ea8cec1
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 ptr, align 4
15   store i32 0, ptr %v0
16   store ptr @g0, ptr %v1, align 4
17   %v2 = load i32, ptr @g1, align 4
18   %v3 = load ptr, ptr %v1, align 4
19   store i32 %v2, ptr %v3, align 4
20   ret i32 0
23 attributes #0 = { nounwind }