You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
230 B
13 lines
230 B
4 months ago
|
; RUN: llc -mtriple arm-linux-gnueabi -filetype asm -o - %s | FileCheck %s
|
||
|
|
||
|
declare i8* @llvm.thread.pointer()
|
||
|
|
||
|
define i8* @test() {
|
||
|
entry:
|
||
|
%tmp1 = call i8* @llvm.thread.pointer()
|
||
|
ret i8* %tmp1
|
||
|
}
|
||
|
|
||
|
; CHECK: bl __aeabi_read_tp
|
||
|
|