brintos

brintos / llvm-project-archived public Read only

0
0
Text · 472 B · 779ef6b Raw
21 lines · plain
1; RUN: llc -mtriple=mipsel-linux-gnu -mattr=mips16 -mattr=+soft-float -mips16-hard-float -relocation-model=pic < %s | FileCheck %s2 3; Function Attrs: nounwind optsize4define float @h()  {5entry:6  %call = tail call float @g() 7  ret float %call8; CHECK:	.ent	h9; CHECK: 	save	$16, $ra, $18, 3210; CHECK: 	lw	${{[0-9]+}}, %got(__mips16_call_stub_sf_0)(${{[0-9]+}})11; CHECK: 	restore	$16, $ra, $18, 3212; CHECK: 	.end	h13}14 15; Function Attrs: optsize16declare float @g(...) 17 18 19 20 21