mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 14:46:53 +00:00
15db81893f
a gold binary explicitly. Substitute this binary into the tests rather than just directly executing the 'ld' binary. This should allow folks to inject a cross compiling gold binary, or in my case to use a gold binary built and installed somewhere other than /usr/bin/ld. It should also allow the tests to find 'ld.gold' so that things work even if gold isn't the default on the system. I've only stubbed out support in the makefile to preserve the existing behavior with none of the fancy logic. If someone else wants to add logic here, they're welcome to do so. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229251 91177308-0d34-0410-b5e6-96231b3b80d8
30 lines
1020 B
LLVM
30 lines
1020 B
LLVM
; RUN: llvm-as %s -o %t1.o
|
|
; RUN: llvm-as %p/Inputs/common.ll -o %t2.o
|
|
|
|
; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
|
|
; RUN: --plugin-opt=emit-llvm \
|
|
; RUN: -shared %t1.o %t2.o -o %t3.o
|
|
; RUN: llvm-dis %t3.o -o - | FileCheck %s
|
|
|
|
@a = common global i8 0, align 8
|
|
|
|
; Shared library case, we merge @a as common and keep it for the symbol table.
|
|
; CHECK: @a = common global i16 0, align 8
|
|
|
|
; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
|
|
; RUN: --plugin-opt=emit-llvm \
|
|
; RUN: %t1.o %t2.o -o %t3.o
|
|
; RUN: llvm-dis %t3.o -o - | FileCheck --check-prefix=EXEC %s
|
|
|
|
; All IR case, we internalize a after merging.
|
|
; EXEC: @a = internal global i16 0, align 8
|
|
|
|
; RUN: llc %p/Inputs/common.ll -o %t2.o -filetype=obj
|
|
; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
|
|
; RUN: --plugin-opt=emit-llvm \
|
|
; RUN: %t1.o %t2.o -o %t3.o
|
|
; RUN: llvm-dis %t3.o -o - | FileCheck --check-prefix=MIXED %s
|
|
|
|
; Mixed ELF and IR. We keep ours as common so the linker will finish the merge.
|
|
; MIXED: @a = common global i8 0, align 8
|