1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CodeGen/Hexagon/local-exec.ll
Krzysztof Parzyszek 66abdd815e [Hexagon] Add more lit tests
llvm-svn: 327271
2018-03-12 14:01:28 +00:00

24 lines
598 B
LLVM

; RUN: llc -march=hexagon -O0 < %s | FileCheck %s
target triple = "hexagon-unknown--elf"
@g0 = internal thread_local(localexec) global i32 0, align 4
@g1 = internal thread_local(localexec) global i32 0, align 4
; CHECK: ##g0@{{TPREL|tprel}}
; CHECK: ##g1@{{TPREL|tprel}}
; Function Attrs: nounwind
define i32 @f0() #0 {
b0:
%v0 = alloca i32, align 4
%v1 = alloca i32*, align 4
store i32 0, i32* %v0
store i32* @g0, i32** %v1, align 4
%v2 = load i32, i32* @g1, align 4
%v3 = load i32*, i32** %v1, align 4
store i32 %v2, i32* %v3, align 4
ret i32 0
}
attributes #0 = { nounwind }