1 ; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mattr=mips16 \
2 ; RUN: -relocation-model=pic -no-integrated-as < %s | \
3 ; RUN: FileCheck %s -check-prefixes=ALL,GAS
5 ; The integrated assembler expands assembly macros before printing.
6 ; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mattr=mips16 \
7 ; RUN: -relocation-model=pic < %s | \
8 ; RUN: FileCheck %s -check-prefixes=ALL,IAS
10 @x = external global float
12 ; Function Attrs: nounwind
13 define void @v_sf(float %p) #0 {
15 %p.addr = alloca float, align 4
16 store float %p, ptr %p.addr, align 4
17 %0 = load float, ptr %p.addr, align 4
18 store float %0, ptr @x, align 4
21 ; ALL-LABEL: .ent __fn_stub_v_sf
24 ; ALL: .reloc 0, R_MIPS_NONE, v_sf
25 ; GAS: la $25, $__fn_local_v_sf
26 ; IAS: lw $25, %got($$__fn_local_v_sf)($gp)
27 ; IAS: addiu $25, $25, %lo($$__fn_local_v_sf)
30 ; ALL: .end __fn_stub_v_sf