Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / Inline / inline-indirect.ll
blob1f0ef41e5da9e2d4c5add1afc4706234e60c4172
1 ; RUN: opt < %s -passes=inline -disable-output 2>/dev/null
2 ; This test used to trigger an assertion in the assumption cache when
3 ; inlining the indirect call
4 declare void @llvm.assume(i1)
6 define void @foo() {
7   ret void
10 define void @bar(ptr) {
11   call void @llvm.assume(i1 true)
12   call void %0();
13   ret void
16 define void @baz() {
17   call void @bar(ptr @foo)
18   ret void