[lld] r328967 - [ELF] - cref.s: check that we print symbols from archives. NFCI.
George Rimar via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 2 04:28:44 PDT 2018
Author: grimar
Date: Mon Apr 2 04:28:44 2018
New Revision: 328967
URL: http://llvm.org/viewvc/llvm-project?rev=328967&view=rev
Log:
[ELF] - cref.s: check that we print symbols from archives. NFCI.
This is consistent with bfd and we already supported it,
though test did not contain the explicit check.
Modified:
lld/trunk/test/ELF/cref.s
Modified: lld/trunk/test/ELF/cref.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/cref.s?rev=328967&r1=328966&r2=328967&view=diff
==============================================================================
--- lld/trunk/test/ELF/cref.s (original)
+++ lld/trunk/test/ELF/cref.s Mon Apr 2 04:28:44 2018
@@ -2,9 +2,12 @@
// RUN: echo '.global foo; foo:' | llvm-mc -filetype=obj -triple=x86_64-pc-linux - -o %t1.o
// RUN: echo '.global foo, bar; bar:' | llvm-mc -filetype=obj -triple=x86_64-pc-linux - -o %t2.o
+// RUN: echo '.global zed; zed:' | llvm-mc -filetype=obj -triple=x86_64-pc-linux - -o %ta.o
+// RUN: rm -f %t.a
+// RUN: llvm-ar rcs %t.a %ta.o
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t3.o
// RUN: ld.lld -shared -o %t1.so %t1.o -gc-sections
-// RUN: ld.lld -o /dev/null %t1.so %t2.o %t3.o -cref | FileCheck -strict-whitespace %s
+// RUN: ld.lld -o /dev/null %t1.so %t2.o %t3.o %t.a -cref | FileCheck -strict-whitespace %s
// CHECK: Symbol File
// CHECK-NEXT: bar {{.*}}2.o
@@ -14,11 +17,14 @@
// CHECK-NEXT: {{.*}}3.o
// CHECK-NEXT: _start {{.*}}3.o
// CHECK-NEXT: baz {{.*}}3.o
+// CHECK-NEXT: zed {{.*}}.a({{.*}}a.o)
+// CHECK-NEXT: {{.*}}3.o
.global _start, foo, bar, baz
_start:
call foo
call bar
+ call zed
localsym:
baz:
More information about the llvm-commits
mailing list