1 ; RUN: opt < %s -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)
10 define void @bar(void ()*) {
11 call void @llvm.assume(i1 true)
17 call void @bar(void ()* @foo)