mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-09 10:05:41 +00:00
d45e37a0a5
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159771 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
293 B
LLVM
16 lines
293 B
LLVM
; 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
|
|
}
|
|
|