[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Bitcode / module-hash-strtab.ll
blobe5a1fb0c40779581f1789580dbbbae58785d8d94
1 ; RUN: opt -module-hash %s -o - | llvm-bcanalyzer -dump | grep '<HASH' > %t
2 ; RUN: opt -module-hash %S/Inputs/module-hash-strtab1.ll -o - | llvm-bcanalyzer -dump | grep '<HASH' >> %t
3 ; RUN: opt -module-hash %S/Inputs/module-hash-strtab2.ll -o - | llvm-bcanalyzer -dump | grep '<HASH' >> %t
4 ; RUN: sort %t | uniq | count 3
6 source_filename = "foo.c"
8 $com = comdat any
10 define void @main() comdat($com) {
11   call void @foo()
12   ret void
15 declare void @foo()