blob: b3b6c77f9bb8f9d44fb7393b3724f4243be3e524 [file] [log] [blame]
; RUN: llc < %s -mtriple=armv7-apple-ios | FileCheck %s
; RUN: llc < %s -mtriple=thumbv7-apple-ios | FileCheck %s
; rdar://8690640
define ptr @t(ptr %x) nounwind "frame-pointer"="all" {
entry:
; CHECK-LABEL: t:
; CHECK: push
; CHECK: mov r7, sp
; CHECK: bl _foo
; CHECK: bl _foo
; CHECK: pop
; CHECK: b
%0 = tail call ptr @foo(ptr %x) nounwind
%1 = tail call ptr @foo(ptr %0) nounwind
%2 = tail call ptr @foo(ptr %1) nounwind
ret ptr %2
}
declare ptr @foo(ptr)