31 lines · plain
1; RUN: llc -mtriple=mipsel-linux-gnu -mattr=mips16 \2; RUN: -relocation-model=pic -no-integrated-as < %s | \3; RUN: FileCheck %s -check-prefixes=ALL,GAS4 5; The integrated assembler expands assembly macros before printing.6; RUN: llc -mtriple=mipsel-linux-gnu -mattr=mips16 \7; RUN: -relocation-model=pic < %s | \8; RUN: FileCheck %s -check-prefixes=ALL,IAS9 10@x = external global float11 12; Function Attrs: nounwind13define void @v_sf(float %p) #0 {14entry:15 %p.addr = alloca float, align 416 store float %p, ptr %p.addr, align 417 %0 = load float, ptr %p.addr, align 418 store float %0, ptr @x, align 419 ret void20}21; ALL-LABEL: .ent __fn_stub_v_sf22; ALL: .cpload $2523; ALL: .set reorder24; ALL: .reloc 0, R_MIPS_NONE, v_sf25; GAS: la $25, $__fn_local_v_sf26; IAS: lw $25, %got($__fn_local_v_sf)($gp)27; IAS: addiu $25, $25, %lo($__fn_local_v_sf)28; ALL: mfc1 $4, $f1229; ALL: jr $2530; ALL: .end __fn_stub_v_sf31