view test/CodeGen/AArch64/tailcall-fastisel.ll @ 100:7d135dc70f03 LLVM 3.9

LLVM 3.9
author Miyagi Mitsuki <e135756@ie.u-ryukyu.ac.jp>
date Tue, 26 Jan 2016 22:53:40 +0900
parents 54457678186b
children 3a76565eade5
line wrap: on
line source

; RUN: llc < %s -mtriple=arm64-apple-darwin -O0 | FileCheck %s

; CHECK: b _foo0

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

declare i32 @foo0()