64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
12 lines
192 B
LLVM
12 lines
192 B
LLVM
; 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()
|