[PATCH] D10980: [lld] COFF: Fix bug involving archives defining a symbol multiple times.
Peter Collingbourne
peter at pcc.me.uk
Mon Jul 6 19:15:45 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL241538: COFF: Fix bug involving archives defining a symbol multiple times. (authored by pcc).
Changed prior to commit:
http://reviews.llvm.org/D10980?vs=29141&id=29143#toc
Repository:
rL LLVM
http://reviews.llvm.org/D10980
Files:
lld/trunk/COFF/SymbolTable.cpp
lld/trunk/test/COFF/ar-comdat.test
Index: lld/trunk/test/COFF/ar-comdat.test
===================================================================
--- lld/trunk/test/COFF/ar-comdat.test
+++ lld/trunk/test/COFF/ar-comdat.test
@@ -0,0 +1,38 @@
+# RUN: yaml2obj %s > %t1.obj
+# RUN: yaml2obj %s > %t2.obj
+# RUN: llvm-lib /out:%t.lib %t1.obj %t2.obj
+# RUN: lld -flavor link2 /out:%t.exe /lldmap:%t.map /entry:main /subsystem:console %p/Inputs/ret42.obj %t.lib
+# RUN: FileCheck %s < %t.map
+
+# CHECK-NOT: .lib
+
+---
+header:
+ Machine: IMAGE_FILE_MACHINE_AMD64
+ Characteristics: [ ]
+sections:
+ - Name: .bss
+ Characteristics: [ IMAGE_SCN_CNT_UNINITIALIZED_DATA, IMAGE_SCN_LNK_COMDAT, IMAGE_SCN_MEM_READ, IMAGE_SCN_MEM_WRITE ]
+ Alignment: 4
+ SectionData: ''
+symbols:
+ - Name: .bss
+ Value: 0
+ SectionNumber: 1
+ SimpleType: IMAGE_SYM_TYPE_NULL
+ ComplexType: IMAGE_SYM_DTYPE_NULL
+ StorageClass: IMAGE_SYM_CLASS_STATIC
+ SectionDefinition:
+ Length: 4
+ NumberOfRelocations: 0
+ NumberOfLinenumbers: 0
+ CheckSum: 0
+ Number: 1
+ Selection: IMAGE_COMDAT_SELECT_ANY
+ - Name: x
+ Value: 0
+ SectionNumber: 1
+ SimpleType: IMAGE_SYM_TYPE_NULL
+ ComplexType: IMAGE_SYM_DTYPE_NULL
+ StorageClass: IMAGE_SYM_CLASS_EXTERNAL
+...
Index: lld/trunk/COFF/SymbolTable.cpp
===================================================================
--- lld/trunk/COFF/SymbolTable.cpp
+++ lld/trunk/COFF/SymbolTable.cpp
@@ -177,7 +177,8 @@
if (!Sym->Body.compare_exchange_strong(Existing, New))
continue;
New->setBackref(Sym);
- Accum->push_back(Sym);
+ if (isa<Undefined>(Existing))
+ Accum->push_back(Sym);
return;
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D10980.29143.patch
Type: text/x-patch
Size: 1843 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150707/120902c2/attachment.bin>
More information about the llvm-commits
mailing list