| Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame^] | 1 | ; RUN: llc < %s -mtriple=arm64-apple-darwin -O0 | FileCheck %s |
| 2 | |||||
| 3 | ; CHECK: b _foo0 | ||||
| 4 | |||||
| 5 | define i32 @foo1() { | ||||
| 6 | entry: | ||||
| 7 | %call = tail call i32 @foo0() | ||||
| 8 | ret i32 %call | ||||
| 9 | } | ||||
| 10 | |||||
| 11 | declare i32 @foo0() | ||||