[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / ThinLTO / X86 / emit_imports.ll
blob4246264654110d2c702267f877c57045d4bedbed
1 ; RUN: opt -module-summary %s -o %t1.bc
2 ; RUN: opt -module-summary %p/Inputs/emit_imports.ll -o %t2.bc
3 ; RUN: opt -module-summary %p/Inputs/emit_imports2.ll -o %t2b.bc
4 ; Include a file with an empty module summary index, to ensure that the expected
5 ; output files are created regardless, for a distributed build system.
6 ; RUN: opt -module-summary %p/Inputs/empty.ll -o %t3.bc
7 ; RUN: rm -f %t3.bc.imports
8 ; RUN: llvm-lto -thinlto-action=thinlink -o %t.index.bc %t1.bc %t2.bc %t2b.bc %t3.bc
9 ; RUN: llvm-lto -thinlto-action=emitimports -thinlto-index %t.index.bc %t1.bc %t2.bc %t2b.bc %t3.bc
11 ; The imports file for this module contains the bitcode file for
12 ; Inputs/emit_imports.ll
13 ; RUN: cat %t1.bc.imports | count 2
14 ; RUN: cat %t1.bc.imports | FileCheck %s --check-prefix=IMPORTS1
15 ; IMPORTS1: emit_imports.ll.tmp2.bc
16 ; IMPORTS1: emit_imports.ll.tmp2b.bc
18 ; The imports file for Input/emit_imports.ll is empty as it does not import anything.
19 ; RUN: cat %t2.bc.imports | count 0
21 ; The imports file for Input/empty.ll is empty but should exist.
22 ; RUN: cat %t3.bc.imports | count 0
24 ; RUN: rm -f %t1.thinlto.bc %t1.bc.imports
25 ; RUN: rm -f %t2.thinlto.bc %t2.bc.imports
26 ; RUN: rm -f %t3.bc.thinlto.bc %t3.bc.imports
27 ; RUN: llvm-lto2 run %t1.bc %t2.bc %t2b.bc %t3.bc -o %t.o -save-temps \
28 ; RUN:     -thinlto-distributed-indexes \
29 ; RUN:     -r=%t1.bc,g, \
30 ; RUN:     -r=%t1.bc,h, \
31 ; RUN:     -r=%t1.bc,f,px \
32 ; RUN:     -r=%t2.bc,g,px \
33 ; RUN:     -r=%t2b.bc,h,px
35 ; RUN: cat %t1.bc.imports | count 2
36 ; RUN: cat %t1.bc.imports | FileCheck %s --check-prefix=IMPORTS1
38 ; The imports file for Input/emit_imports.ll is empty as it does not import anything.
39 ; RUN: cat %t2.bc.imports | count 0
41 ; The imports file for Input/empty.ll is empty but should exist.
42 ; RUN: cat %t3.bc.imports | count 0
44 ; The index file should be created even for the input with an empty summary.
45 ; RUN: ls %t3.bc.thinlto.bc
47 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
48 target triple = "x86_64-unknown-linux-gnu"
50 declare void @g(...)
51 declare void @h(...)
53 define void @f() {
54 entry:
55   call void (...) @g()
56   call void (...) @h()
57   ret void