[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / ARM / tailcc-notail.ll
blob9df036af1a40fed855bd9ad441763dacab462791
1 ; RUN: not --crash llc -mtriple=thumbv7k-apple-ios %s -o - 2>&1 | FileCheck %s
3 ; CHECK: LLVM ERROR: failed to perform tail call elimination on a call site marked musttail
4 declare tailcc [16 x i64] @callee()
5 define tailcc [16 x i64] @caller() {
6   %res = musttail call tailcc [16 x i64] @callee()
7   ret [16 x i64] %res