brintos

brintos / llvm-project-archived public Read only

0
0
Text · 317 B · 9fedddb Raw
9 lines · plain
1; RUN: not --crash llc -mtriple=arm64-apple-ios %s -o - 2>&1 | FileCheck %s2 3; CHECK: LLVM ERROR: failed to perform tail call elimination on a call site marked musttail4declare tailcc [16 x i64] @callee()5define tailcc [16 x i64] @caller() {6  %res = musttail call tailcc [16 x i64] @callee()7  ret [16 x i64] %res8}9