mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
6813bf2821
I am getting a bot failure from the thin archive part of this test: From http://bb.pgr.jp/builders/cmake-llvm-x86_64-linux/builds/40468/steps/test_llvm/logs/LLVM%20%3A%3A%20tools__gold__X86__thinlto_emit_linked_objects.ll: Command Output (stderr): -- /home/bb/cmake-llvm-x86_64-linux/build/./bin/llvm-ar: creating /home/bb/cmake-llvm-x86_64-linux/build/test/tools/gold/X86/Output/thinlto_emit_linked_objects.ll.tmp2.a /usr/bin/ld.gold: internal error in add_writer, at ../../gold/token.h:124 -- This appears to be an issue with an older version of gold. The test case passes for me locally when I use the gold v1.12 I was testing with, but when I tried the gold installed on my system which is v1.11 I get the same error. Remove the thin archive version of the test, since there isn't a way to predicate it on gold version. llvm-svn: 276453
34 lines
1.2 KiB
LLVM
34 lines
1.2 KiB
LLVM
; First generate bitcode with a module summary index for each file
|
|
; RUN: opt -module-summary %s -o %t.o
|
|
; RUN: opt -module-summary %p/Inputs/thinlto_emit_linked_objects.ll -o %t2.o
|
|
|
|
; Next do the ThinLink step, specifying thinlto-index-only so that the gold
|
|
; plugin exits after generating individual indexes. The objects the linker
|
|
; decided to include in the link should be emitted into the file specified
|
|
; after 'thinlto-index-only='. Note that in this test both files should
|
|
; be included in the link, but in a case where there was an object in
|
|
; a library that had no strongly referenced symbols, that file would not
|
|
; be included in the link and listed in the emitted file. However, this
|
|
; requires gold version 1.12.
|
|
; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
|
|
; RUN: --plugin-opt=thinlto \
|
|
; RUN: --plugin-opt=thinlto-index-only=%t3 \
|
|
; RUN: -o %t5 \
|
|
; RUN: %t.o \
|
|
; RUN: --start-lib %t2.o --end-lib
|
|
|
|
; RUN: cat %t3 | FileCheck %s
|
|
; CHECK: thinlto_emit_linked_objects.ll.tmp.o
|
|
; CHECK: thinlto_emit_linked_objects.ll.tmp2.o
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define i32 @main() {
|
|
entry:
|
|
call void (...) @foo()
|
|
ret i32 0
|
|
}
|
|
|
|
declare void @foo(...)
|