Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / DeadArgElim / musttail-caller.ll
blob4549ab41fb8ad59ef2e8ee45f1f015d49d039557
1 ; RUN: opt -passes=deadargelim -S < %s | FileCheck %s
2 ; PR36441
3 ; Dead arguments should not be removed in presence of `musttail` calls.
5 ; CHECK-LABEL: define internal void @test(i32 %a, i32 %b)
6 ; CHECK: musttail call void @foo(i32 %a, i32 0)
7 ; FIXME: we should replace those with `undef`s
8 define internal void @test(i32 %a, i32 %b) {
9   musttail call void @foo(i32 %a, i32 0)
10   ret void
13 ; CHECK-LABEL: define internal void @foo(i32 %a, i32 %b)
14 define internal void @foo(i32 %a, i32 %b) {
15   ret void