[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Bitcode / thinlto-unused-type-tests.ll
blobc2c5dd2f9a301a71a09d0cf4b9cd74a92c91ee7a
1 ; RUN: opt -module-summary %s -o %t.o
2 ; RUN: llvm-bcanalyzer -dump %t.o | FileCheck %s
4 ; CHECK-NOT: <TYPE_TESTS
5 define void @f() {
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)
9   ret void
12 declare i1 @llvm.type.test(i8*, metadata) nounwind readnone
13 declare void @llvm.assume(i1)