Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / Mips / long-call-mcount.ll
blob40d3b74ee57976002647dbef67dd0397e2392470
1 ; Check call to mcount in case of long/short call options.
2 ; RUN: llc -march=mips -target-abi o32 --mattr=+long-calls,+noabicalls < %s \
3 ; RUN:   -mips-jalr-reloc=false | FileCheck -check-prefixes=CHECK,LONG %s
4 ; RUN: llc -march=mips -target-abi o32 --mattr=-long-calls,+noabicalls < %s \
5 ; RUN:   -mips-jalr-reloc=false | FileCheck -check-prefixes=CHECK,SHORT %s
7 define void @foo() {
8 entry:
9   call void @_mcount()
10   ret void
12 ; CHECK-LABEL: foo
13 ; LONG:          lui     $1, %hi(_mcount)
14 ; LONG-NEXT:     addiu   $25, $1, %lo(_mcount)
15 ; LONG-NEXT:     jalr    $25
16 ; SHORT:         jal     _mcount
19 declare void @_mcount()