mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
e31605427f
Summary: Add support for emission of plaintext lists of the imported files for each distributed backend compilation. Used for distributed build file staging. Invoked with new gold-plugin thinlto-emit-imports-files option, which is only valid with thinlto-index-only (i.e. for distributed builds), or from llvm-lto with new -thinlto-action=emitimports value. Depends on D19556. Reviewers: joker.eph Subscribers: llvm-commits, joker.eph Differential Revision: http://reviews.llvm.org/D19636 llvm-svn: 269067
22 lines
694 B
LLVM
22 lines
694 B
LLVM
; RUN: opt -module-summary %s -o %t1.bc
|
|
; RUN: opt -module-summary %p/Inputs/emit_imports.ll -o %t2.bc
|
|
; RUN: llvm-lto -thinlto-action=thinlink -o %t.index.bc %t1.bc %t2.bc
|
|
; RUN: llvm-lto -thinlto-action=emitimports -thinlto-index %t.index.bc %t1.bc %t2.bc
|
|
|
|
; The imports file for this module contains the bitcode file for
|
|
; Inputs/emit_imports.ll
|
|
; RUN: cat %t1.bc.imports | count 1
|
|
; RUN: cat %t1.bc.imports | FileCheck %s --check-prefix=IMPORTS1
|
|
; IMPORTS1: emit_imports.ll.tmp2.bc
|
|
|
|
; The imports file for Input/emit_imports.ll is empty as it does not import anything.
|
|
; RUN: cat %t2.bc.imports | count 0
|
|
|
|
declare void @g(...)
|
|
|
|
define void @f() {
|
|
entry:
|
|
call void (...) @g()
|
|
ret void
|
|
}
|