2015-07-30 20:39:33 +08:00
|
|
|
; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=1 -mcpu=mips32r2 \
|
2014-05-02 04:39:21 +08:00
|
|
|
; RUN: < %s | FileCheck %s
|
2015-07-30 20:39:33 +08:00
|
|
|
; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=1 -mcpu=mips32 \
|
2014-09-16 04:30:25 +08:00
|
|
|
; RUN: < %s | FileCheck %s
|
2014-05-02 04:39:21 +08:00
|
|
|
|
|
|
|
@abcd = external global i32
|
|
|
|
|
|
|
|
; Function Attrs: nounwind
|
|
|
|
define void @foo() {
|
|
|
|
entry:
|
|
|
|
store i32 12345, i32* @abcd, align 4
|
|
|
|
; CHECK: addiu $[[REG1:[0-9]+]], $zero, 12345
|
|
|
|
; CHECK: lw $[[REG2:[0-9]+]], %got(abcd)(${{[0-9]+}})
|
|
|
|
; CHECK: sw $[[REG1]], 0($[[REG2]])
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|