[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / CodeGen / X86 / preserve_nonecc_musttail.ll
blob77f5a8bd75ac86ec96661295d65ad6db585cf7bf
1 ; RUN: not llc -mtriple=x86_64-unknown-unknown -mcpu=corei7 %s -o - 2>&1 | FileCheck %s
3 ; Incompatible calling convention causes following error message.
5 ; CHECK: cannot guarantee tail call due to mismatched calling conv
7 declare preserve_nonecc void @callee(ptr)
8 define void @caller(ptr %a) {
9   musttail call preserve_nonecc void @callee(ptr %a)
10   ret void