aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/Fast-ISel/simplestore.ll
blob: f2f7c94a2bb275e3a7940321f302ce766b503733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=3 -mcpu=mips32r2 \
; RUN:     < %s | FileCheck %s
; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=3 -mcpu=mips32 \
; RUN:     < %s | FileCheck %s

@abcd = external global i32

; Function Attrs: nounwind
define void @foo()  {
entry:
  store i32 12345, i32* @abcd, align 4
; CHECK: 	lw	$[[REG2:[0-9]+]], %got(abcd)(${{[0-9]+}})
; CHECK: 	addiu	$[[REG1:[0-9]+]], $zero, 12345
; CHECK: 	sw	$[[REG1]], 0($[[REG2]])
  ret void
}