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
348 B
13 lines
348 B
; RUN: llc -march=mips < %s | FileCheck %s
|
|
; RUN: llc -march=mips64 < %s | FileCheck %s
|
|
; RUN: llc -march=mipsel < %s | FileCheck %s
|
|
; RUN: llc -march=mips64el < %s | FileCheck %s
|
|
|
|
declare i8* @llvm.thread.pointer() nounwind readnone
|
|
|
|
define i8* @thread_pointer() {
|
|
; CHECK: rdhwr $3, $29
|
|
%1 = tail call i8* @llvm.thread.pointer()
|
|
ret i8* %1
|
|
}
|