Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / ThinLTO / X86 / cache-decoupled-from-order.ll
blob88717507c522107795dd1de6af5a06a5e70f3537
1 ; RUN: rm -rf %t && mkdir -p %t
2 ; RUN: opt -module-hash -module-summary %s -o %t/t.bc
3 ; RUN: opt -module-hash -module-summary %S/Inputs/cache-import-lists3.ll -o %t/a.bc
4 ; RUN: opt -module-hash -module-summary %S/Inputs/cache-import-lists4.ll -o %t/b.bc
6 ; Tests that the hash for t is insensitive to the order of the modules.
8 ; RUN: llvm-lto2 run -cache-dir %t/cache -o %t.o %t/t.bc %t/a.bc %t/b.bc -r=%t/t.bc,main,plx -r=%t/t.bc,f1,lx -r=%t/t.bc,f2,lx -r=%t/a.bc,f1,plx -r=%t/b.bc,f2,plx
9 ; RUN: ls %t/cache | count 3
11 ; RUN: llvm-lto2 run -cache-dir %t/cache -o %t.o %t/b.bc %t/a.bc %t/t.bc -r=%t/t.bc,main,plx -r=%t/t.bc,f1,lx -r=%t/t.bc,f2,lx -r=%t/a.bc,f1,plx -r=%t/b.bc,f2,plx
12 ; RUN: ls %t/cache | count 3
14 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
15 target triple = "x86_64-unknown-linux-gnu"
17 define void @main() {
18   call void @f1()
19   call void @f2()
20   ret void
23 declare void @f1()
24 declare void @f2()