Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / RISCV / musttail-call.ll
blobf6ec5307b8bad2e5671a3f9502f82f409fc2a897
1 ; Check that we error out if tail is not possible but call is marked as mustail.
3 ; RUN: not --crash llc -mtriple riscv32-unknown-linux-gnu -o - %s \
4 ; RUN: 2>&1 | FileCheck %s
5 ; RUN: not --crash llc -mtriple riscv32-unknown-elf -o - %s \
6 ; RUN: 2>&1 | FileCheck %s
7 ; RUN: not --crash llc -mtriple riscv64-unknown-linux-gnu -o - %s \
8 ; RUN: 2>&1 | FileCheck %s
9 ; RUN: not --crash llc -mtriple riscv64-unknown-elf -o - %s \
10 ; RUN: 2>&1 | FileCheck %s
12 %struct.A = type { i32 }
14 declare void @callee_musttail(ptr sret(%struct.A) %a)
15 define void @caller_musttail(ptr sret(%struct.A) %a) {
16 ; CHECK: LLVM ERROR: failed to perform tail call elimination on a call site marked musttail
17 entry:
18   musttail call void @callee_musttail(ptr sret(%struct.A) %a)
19   ret void