[RISCV][VLOPT] Add vector narrowing integer right shift instructions to isSupportedIn...
[llvm-project.git] / llvm / test / CodeGen / AArch64 / tailcc-notail.ll
blob9fedddb75e16d2569acd25039f4892ad376e1d19
1 ; RUN: not --crash llc -mtriple=arm64-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