[clang-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git] / llvm / test / CodeGen / Mips / hf1_body.ll
blobc3dea67896210a91f4a0ebf93fdeb5d425b17f18
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 {
14 entry:
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
19   ret void
21 ; ALL-LABEL: .ent __fn_stub_v_sf
22 ; ALL:       .cpload $25
23 ; ALL:       .set reorder
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)
28 ; ALL:       mfc1 $4, $f12
29 ; ALL:       jr $25
30 ; ALL:       .end __fn_stub_v_sf