aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/AArch64/tailcc-notail.ll
blob: 9fedddb75e16d2569acd25039f4892ad376e1d19 (plain)
1
2
3
4
5
6
7
8
; RUN: not --crash llc -mtriple=arm64-apple-ios %s -o - 2>&1 | FileCheck %s

; CHECK: LLVM ERROR: failed to perform tail call elimination on a call site marked musttail
declare tailcc [16 x i64] @callee()
define tailcc [16 x i64] @caller() {
  %res = musttail call tailcc [16 x i64] @callee()
  ret [16 x i64] %res
}