Recommit r310809 with a fix for the spill problem
[llvm-core.git] / test / CodeGen / AArch64 / tailcall-fastisel.ll
blob3ba639183161411dc4a873a9ecfeb52f8ef4a1c1
1 ; RUN: llc < %s -mtriple=arm64-apple-darwin -O0 | FileCheck %s
3 ; CHECK: b _foo0
5 define i32 @foo1() {
6 entry:
7   %call = tail call i32 @foo0()
8   ret i32 %call
11 declare i32 @foo0()