mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-12 15:30:46 +00:00
bf8ab3e6da
With r279911 I accidentally regressed the gold/X86/start-lib-common.ll test for newer golds (v1.12+) that honor the --start-lib/--end-lib. Remove the alignment which should not be there to make this work with both old and new gold linkers. Additionally, now that we have a subdirectory for v1.12+ gold tests, copy this test there and check specifically for the v1.12+ behavior. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@279977 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
589 B
LLVM
17 lines
589 B
LLVM
; Test the case when the preferred (larger / more aligned) version of a common
|
|
; symbol is located in a module that's not included in the link.
|
|
|
|
; RUN: llvm-as %s -o %t1.o
|
|
; RUN: llvm-as %p/Inputs/start-lib-common.ll -o %t2.o
|
|
|
|
; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
|
|
; RUN: --plugin-opt=emit-llvm \
|
|
; RUN: -shared %t1.o --start-lib %t2.o --end-lib -o %t3.o
|
|
; RUN: llvm-dis %t3.o -o - | FileCheck %s
|
|
|
|
@x = common global i32 0, align 4
|
|
|
|
; v1.12 gold honors --start-lib/--end-lib, drops %t2.o and ends up
|
|
; with (i32 align 4) symbol.
|
|
; CHECK: @x = common global i32 0, align 4
|