1Fix handling of undef in partial LTO.
authorRafael Espindola <rafael.espindola@gmail.com>
Wed, 2 Mar 2016 18:21:46 +0000 (18:21 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Wed, 2 Mar 2016 18:21:46 +0000 (18:21 +0000)
llvm-svn: 262497

lld/ELF/SymbolTable.cpp
lld/test/ELF/lto/Inputs/undef-mixed.s [new file with mode: 0644]
lld/test/ELF/lto/undef-mixed.ll [new file with mode: 0644]

index 68a28c1..98fb79e 100644 (file)
@@ -156,6 +156,8 @@ template <class ELFT> void SymbolTable<ELFT>::addCombinedLtoObject() {
   Obj->parse(DummyGroups);
   for (SymbolBody *Body : Obj->getSymbols()) {
     Symbol *Sym = insert(Body);
+    if (!Sym->Body->isUndefined() && Body->isUndefined())
+      continue;
     Sym->Body = Body;
   }
 }
diff --git a/lld/test/ELF/lto/Inputs/undef-mixed.s b/lld/test/ELF/lto/Inputs/undef-mixed.s
new file mode 100644 (file)
index 0000000..2e4b7e1
--- /dev/null
@@ -0,0 +1,3 @@
+        .globl  bar
+bar:
+        retq
diff --git a/lld/test/ELF/lto/undef-mixed.ll b/lld/test/ELF/lto/undef-mixed.ll
new file mode 100644 (file)
index 0000000..0fff578
--- /dev/null
@@ -0,0 +1,22 @@
+; REQUIRES: x86
+; RUN: llvm-mc %p/Inputs/undef-mixed.s -o %t.o -filetype=obj -triple=x86_64-pc-linux
+; RUN: llvm-as %s -o %t2.o
+; RUN: ld.lld %t2.o %t.o -o %t.so -shared
+; RUN: llvm-readobj -t %t.so | FileCheck %s
+
+; CHECK:      Name: bar
+; CHECK-NEXT: Value:
+; CHECK-NEXT: Size: 0
+; CHECK-NEXT: Binding: Global
+; CHECK-NEXT: Type: None
+; CHECK-NEXT: Other: 0
+; CHECK-NEXT: Section: .text
+
+target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-unknown-linux-gnu"
+
+declare void @bar()
+define void @foo() {
+  call void @bar()
+  ret void
+}