1 ; RUN: opt -module-summary %s -o %t.o
2 ; RUN: llvm-bcanalyzer -dump %t.o | FileCheck %s
4 ; CHECK-NOT: <TYPE_TESTS
6 %p = call i1 @llvm.type.test(i8* null, metadata !"foo")
7 %q = call i1 @llvm.type.test(i8* null, metadata !"bar")
8 call void @llvm.assume(i1 %q)
12 declare i1 @llvm.type.test(i8*, metadata) nounwind readnone
13 declare void @llvm.assume(i1)