bolt/deps/llvm-18.1.8/llvm/test/CodeGen/X86/tailcc-notail.ll

9 lines
318 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: not --crash llc -mtriple=x86_64-linux-gnu %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
}