Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / ThinLTO / X86 / save_objects.ll
blob11b7e9da9ffd4c2f3ce7a46e2b6ada43a269d1bb
1 ; RUN: opt -module-hash -module-summary %s -o %t.bc
2 ; RUN: opt -module-hash -module-summary %p/Inputs/cache.ll -o %t2.bc
4 ; Check that the generating object files is working without cache
5 ; RUN: rm -Rf %t.thin.out
6 ; RUN: llvm-lto -thinlto-save-objects=%t.thin.out -thinlto-action=run %t2.bc  %t.bc -exported-symbol=main 
7 ; RUN: ls %t.thin.out | count 2
9 ; Same with cache
10 ; RUN: rm -Rf %t.thin.out
11 ; RUN: rm -Rf %t.cache && mkdir %t.cache
12 ; RUN: llvm-lto -thinlto-save-objects=%t.thin.out -thinlto-action=run %t2.bc  %t.bc -exported-symbol=main -thinlto-cache-dir %t.cache 
13 ; RUN: ls %t.thin.out | count 2
14 ; RUN: ls %t.cache | count 3
16 ; Same with hot cache
17 ; RUN: rm -Rf %t.thin.out
18 ; RUN: rm -Rf %t.cache && mkdir %t.cache
19 ; RUN: llvm-lto -thinlto-save-objects=%t.thin.out -thinlto-action=run %t2.bc  %t.bc -exported-symbol=main -thinlto-cache-dir %t.cache 
20 ; RUN: ls %t.thin.out | count 2
21 ; RUN: ls %t.cache | count 3
23 ; Check the name of object in directory has arch name included.
24 ; RUN: ls %t.thin.out | grep x86_64.thinlto.o | count 2
27 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
28 target triple = "x86_64-apple-macosx10.11.0"
30 define void @globalfunc() #0 {
31 entry:
32   ret void