1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/CodeGen/X86/x86-64-tls-1.ll

10 lines
352 B
LLVM
Raw Normal View History

; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu | FileCheck %s
@tm_nest_level = internal thread_local global i32 0
define i64 @z() nounwind {
2014-07-25 00:15:28 +02:00
; CHECK: movq $tm_nest_level@TPOFF, %r[[R0:[abcd]]]x
; CHECK-NEXT: addl %fs:0, %e[[R0]]x
; CHECK-NEXT: andl $100, %e[[R0]]x
2014-07-25 00:15:28 +02:00
ret i64 and (i64 ptrtoint (i32* @tm_nest_level to i64), i64 100)
}