aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/AArch64/tailcall-fastisel.ll
blob: ea173de274ed109d0abb322bc5652326bdef4ba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llc < %s -mtriple=arm64-apple-darwin -O0 -fast-isel | FileCheck %s

; CHECK: b _foo0

define i32 @foo1() {
entry:
  %call = tail call i32 @foo0()
  ret i32 %call
}

declare i32 @foo0()