[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / X86 / tailcc-notail.ll
blobbc3af425482f10b6b4a39bed4b986d520295e454
1 ; RUN: not --crash llc -mtriple=x86_64-linux-gnu %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