Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view test/CodeGen/X86/fast-isel-tls.ll @ 33:e4204d083e25
LLVM 3.5
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 12 Dec 2013 14:32:10 +0900 |
parents | 95c75e76d11b |
children | 54457678186b |
line wrap: on
line source
; RUN: llc < %s -march=x86 -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* @v %s = add i32 %t, 1 ret i32 %s } ; CHECK-LABEL: f: ; CHECK: leal v@TLSGD ; CHECK: __tls_get_addr @alias = alias internal i32* @v define i32 @f_alias() nounwind { entry: %t = load i32* @v %s = add i32 %t, 1 ret i32 %s } ; CHECK-LABEL: f_alias: ; CHECK: leal v@TLSGD ; CHECK: __tls_get_addr