mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
735d694283
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. llvm-svn: 229251
14 lines
385 B
LLVM
14 lines
385 B
LLVM
; RUN: llvm-as %s -o %t.o
|
|
|
|
; RUN: not %gold -plugin %llvmshlibdir/LLVMgold.so \
|
|
; RUN: --plugin-opt=emit-llvm \
|
|
; RUN: -shared %t.o -o %t2.o 2>&1 | FileCheck %s
|
|
|
|
; CHECK: Unable to determine comdat of alias!
|
|
|
|
@g1 = global i32 1
|
|
@g2 = global i32 2
|
|
|
|
@a = alias inttoptr(i32 sub (i32 ptrtoint (i32* @g1 to i32),
|
|
i32 ptrtoint (i32* @g2 to i32)) to i32*)
|