You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
26
external/llvm/test/CodeGen/X86/fast-isel-tls.ll
vendored
Normal file
26
external/llvm/test/CodeGen/X86/fast-isel-tls.ll
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
; RUN: llc < %s -relocation-model=pic -mtriple=i686-unknown-linux-gnu -fast-isel | FileCheck %s
|
||||
; PR3654
|
||||
|
||||
@v = thread_local global i32 0
|
||||
define i32 @f() nounwind {
|
||||
entry:
|
||||
%t = load i32, i32* @v
|
||||
%s = add i32 %t, 1
|
||||
ret i32 %s
|
||||
}
|
||||
|
||||
; CHECK-LABEL: f:
|
||||
; CHECK: leal v@TLSGD
|
||||
; CHECK: __tls_get_addr
|
||||
|
||||
@alias = internal alias i32, i32* @v
|
||||
define i32 @f_alias() nounwind {
|
||||
entry:
|
||||
%t = load i32, i32* @v
|
||||
%s = add i32 %t, 1
|
||||
ret i32 %s
|
||||
}
|
||||
|
||||
; CHECK-LABEL: f_alias:
|
||||
; CHECK: leal v@TLSGD
|
||||
; CHECK: __tls_get_addr
|
Reference in New Issue
Block a user