[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / test / CodeGen / Mips / thread-pointer.ll
blobb460d6dd0a18b302f239cbc50011aadd104f798b
1 ; RUN: llc -march=mips < %s | FileCheck %s
2 ; RUN: llc -march=mips64 < %s | FileCheck %s
3 ; RUN: llc -march=mipsel < %s | FileCheck %s
4 ; RUN: llc -march=mips64el < %s | FileCheck %s
6 declare ptr @llvm.thread.pointer() nounwind readnone
8 define ptr @thread_pointer() {
9 ; CHECK: rdhwr $3, $29
10   %1 = tail call ptr @llvm.thread.pointer()
11   ret ptr %1