mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
test case for r159770.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159771 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a7e4558ec8
commit
d45e37a0a5
15
test/CodeGen/Mips/rdhwr-directives.ll
Normal file
15
test/CodeGen/Mips/rdhwr-directives.ll
Normal file
@ -0,0 +1,15 @@
|
||||
; RUN: llc -march=mipsel -mcpu=mips32 -relocation-model=static < %s | FileCheck %s
|
||||
|
||||
@a = external thread_local global i32
|
||||
|
||||
define i32 @foo() nounwind readonly {
|
||||
entry:
|
||||
; CHECK: .set push
|
||||
; CHECK: .set mips32r2
|
||||
; CHECK: rdhwr
|
||||
; CHECK: .set pop
|
||||
|
||||
%0 = load i32* @a, align 4
|
||||
ret i32 %0
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user