diff --git a/lld/test/ELF/lto/duplicated.ll b/lld/test/ELF/lto/duplicated.ll index e0e05b1fe498a5..60bdb4455ee6b3 100644 --- a/lld/test/ELF/lto/duplicated.ll +++ b/lld/test/ELF/lto/duplicated.ll @@ -2,12 +2,16 @@ ; RUN: rm -rf %t && split-file %s %t ; RUN: llvm-as %t/a.ll -o %t/a.bc ; RUN: llvm-mc --triple=x86_64-unknown-linux-gnu -filetype=obj %t/b.s -o %t/b.o +; RUN: llvm-as %t/c.ll -o %t/c.bc ; RUN: not ld.lld %t/a.bc %t/a.bc -o /dev/null -shared 2>&1 | FileCheck %s ;; --thinlto-index-only skips some passes. Test the error is present. ; RUN: not ld.lld %t/a.bc %t/a.bc --thinlto-index-only -o /dev/null 2>&1 | FileCheck %s ; RUN: not ld.lld %t/b.o %t/a.bc --lto-emit-asm -o /dev/null 2>&1 | FileCheck %s --check-prefix=CHECK2 +;; --undefined-glob g extracts %t/c.bc which causes a duplicate symbol error. +; RUN: not ld.lld %t/a.bc --start-lib %t/c.bc --undefined-glob g --thinlto-index-only -o /dev/null 2>&1 | FileCheck %s --check-prefix=CHECK + ; CHECK: duplicate symbol: f ; CHECK-NEXT: >>> defined in {{.*}}.bc ; CHECK-NEXT: >>> defined in {{.*}}.bc @@ -20,6 +24,10 @@ target triple = "x86_64-unknown-linux-gnu" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" +define void @_start() { + ret void +} + define void @f() { ret void } @@ -27,3 +35,15 @@ define void @f() { ;--- b.s .globl f f: + +;--- c.ll +target triple = "x86_64-unknown-linux-gnu" +target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" + +define void @f() { + ret void +} + +define void @g() { + ret void +}