1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 13:02:52 +02:00
llvm-mirror/test/CodeGen/ARM/tls1.ll

23 lines
442 B
LLVM
Raw Normal View History

; RUN: llc < %s -march=arm -mtriple=arm-linux-gnueabi | FileCheck %s
; RUN: llc < %s -march=arm -mtriple=arm-linux-gnueabi -relocation-model=pic | \
; RUN: FileCheck %s --check-prefix=PIC
2007-04-27 23:23:17 +02:00
2007-04-27 23:08:48 +02:00
; CHECK: i(TPOFF)
; CHECK: __aeabi_read_tp
; PIC: __tls_get_addr
2007-04-27 23:08:48 +02:00
@i = thread_local global i32 15 ; <i32*> [#uses=2]
define i32 @f() {
entry:
%tmp1 = load i32, i32* @i ; <i32> [#uses=1]
2007-04-27 23:08:48 +02:00
ret i32 %tmp1
}
define i32* @g() {
entry:
ret i32* @i
}