Skip to content

Commit

Permalink
Disable the fix for pr20793 because of a gnu ld bug.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217211 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
espindola committed Sep 5, 2014
1 parent 27589ac commit 6cf4a0f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
11 changes: 11 additions & 0 deletions lib/CodeGen/TargetLoweringObjectFileImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include "llvm/MC/MCSectionMachO.h"
#include "llvm/MC/MCStreamer.h"
#include "llvm/MC/MCSymbol.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Dwarf.h"
#include "llvm/Support/ELF.h"
#include "llvm/Support/ErrorHandling.h"
Expand All @@ -41,6 +42,13 @@
using namespace llvm;
using namespace dwarf;

// Disabled by default because it hits bug 17350 in GNU ld (gold is fine)
static cl::opt<bool>
EnableStructorCOMDAT("enable-structor-comdat", cl::Hidden,
cl::desc("Use comdats to keep only one copy of a "
"constructor/destructor invocation"),
cl::init(false));

//===----------------------------------------------------------------------===//
// ELF
//===----------------------------------------------------------------------===//
Expand Down Expand Up @@ -363,6 +371,9 @@ static const MCSectionELF *getStaticStructorSection(MCContext &Ctx,
bool IsCtor,
unsigned Priority,
const MCSymbol *KeySym) {
if (!EnableStructorCOMDAT)
KeySym = nullptr;

std::string Name;
unsigned Type;
unsigned Flags = ELF::SHF_ALLOC | ELF::SHF_WRITE;
Expand Down
21 changes: 19 additions & 2 deletions test/CodeGen/X86/constructor.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
; RUN: llc -mtriple x86_64-pc-linux -use-ctors -enable-structor-comdat < %s | FileCheck --check-prefix=CTOR-COMDAT %s
; RUN: llc -mtriple x86_64-pc-linux -enable-structor-comdat < %s | FileCheck --check-prefix=INIT-ARRAY-COMDAT %s
; RUN: llc -mtriple x86_64-pc-linux -use-ctors < %s | FileCheck --check-prefix=CTOR %s
; RUN: llc -mtriple x86_64-pc-linux < %s | FileCheck --check-prefix=INIT-ARRAY %s

@llvm.global_ctors = appending global [2 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @f, i8* null}, { i32, void ()*, i8* } { i32 15, void ()* @g, i8* @v }]

@v = weak_odr global i8 0
Expand All @@ -14,16 +17,30 @@ entry:
ret void
}

; CTOR: .section .ctors.65520,"aGw",@progbits,v,comdat
; CTOR: .section .ctors.65520,"aw",@progbits
; CTOR-NEXT: .align 8
; CTOR-NEXT: .quad g
; CTOR-NEXT: .section .ctors,"aw",@progbits
; CTOR-NEXT: .align 8
; CTOR-NEXT: .quad f

; INIT-ARRAY: .section .init_array.15,"aGw",@init_array,v,comdat
; INIT-ARRAY: .section .init_array.15,"aw",@init_array
; INIT-ARRAY-NEXT: .align 8
; INIT-ARRAY-NEXT: .quad g
; INIT-ARRAY-NEXT: .section .init_array,"aw",@init_array
; INIT-ARRAY-NEXT: .align 8
; INIT-ARRAY-NEXT: .quad f

; CTOR-COMDAT: .section .ctors.65520,"aGw",@progbits,v,comdat
; CTOR-COMDAT-NEXT: .align 8
; CTOR-COMDAT-NEXT: .quad g
; CTOR-COMDAT-NEXT: .section .ctors,"aw",@progbits
; CTOR-COMDAT-NEXT: .align 8
; CTOR-COMDAT-NEXT: .quad f

; INIT-ARRAY-COMDAT: .section .init_array.15,"aGw",@init_array,v,comdat
; INIT-ARRAY-COMDAT-NEXT: .align 8
; INIT-ARRAY-COMDAT-NEXT: .quad g
; INIT-ARRAY-COMDAT-NEXT: .section .init_array,"aw",@init_array
; INIT-ARRAY-COMDAT-NEXT: .align 8
; INIT-ARRAY-COMDAT-NEXT: .quad f

0 comments on commit 6cf4a0f

Please sign in to comment.