Xamarin Public Jenkins (auto-signing) 8e12397d70 Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
2018-11-16 08:20:38 +00:00

13 lines
348 B
LLVM

; 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
}