Home | History | Annotate | Download | only in Hexagon
      1 ; RUN: llc -march=hexagon -O0 < %s | FileCheck %s
      2 
      3 target triple = "hexagon-unknown--elf"
      4 
      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}}
      9 
     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
     21 }
     22 
     23 attributes #0 = { nounwind }
     24