mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-12 15:05:06 +00:00
16 lines
283 B
LLVM
16 lines
283 B
LLVM
|
; RUN: llc -march=mipsel -enable-mips-delay-filler < %s | FileCheck %s
|
||
|
|
||
|
define void @foo1() nounwind {
|
||
|
entry:
|
||
|
; CHECK: jalr
|
||
|
; CHECK-NOT: nop
|
||
|
; CHECK: jr
|
||
|
; CHECK-NOT: nop
|
||
|
; CHECK: .end
|
||
|
|
||
|
tail call void @foo2(i32 3) nounwind
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
declare void @foo2(i32)
|