1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; Previously a call to @llvm.trap() with following code would cause machine
3 ; verifier issues on MIPS (as TRAP was marked as being a terminator).
4 ; This compiles fine on other architectures, so check we do the same for MIPS.
5 ; RUN: llc -mtriple=mips64-unknown-freebsd -relocation-model=pic -verify-machineinstrs %s -o - | FileCheck %s
8 declare void @llvm.trap() #0
9 declare void @widget() #1
10 define hidden void @eggs() #1 {
12 ; CHECK: # %bb.0: # %entry
13 ; CHECK-NEXT: daddiu $sp, $sp, -16
14 ; CHECK-NEXT: sd $ra, 8($sp) # 8-byte Folded Spill
15 ; CHECK-NEXT: sd $gp, 0($sp) # 8-byte Folded Spill
16 ; CHECK-NEXT: lui $1, %hi(%neg(%gp_rel(eggs)))
17 ; CHECK-NEXT: daddu $1, $1, $25
18 ; CHECK-NEXT: daddiu $gp, $1, %lo(%neg(%gp_rel(eggs)))
20 ; CHECK-NEXT: ld $25, %call16(widget)($gp)
21 ; CHECK-NEXT: .reloc .Ltmp0, R_MIPS_JALR, widget
23 ; CHECK-NEXT: jalr $25
26 call void @llvm.trap()
27 call void @widget() #2
31 attributes #0 = { cold noreturn nounwind }
32 attributes #1 = { nounwind "use-soft-float"="true" }
33 attributes #2 = { noreturn }