[PATCH] D45159: [ELF] - Fix cref.s test case.

George Rimar via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 9 05:49:09 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rLLD329559: [ELF] - Fix cref.s test case. (authored by grimar, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D45159?vs=140614&id=141627#toc

Repository:
  rLLD LLVM Linker

https://reviews.llvm.org/D45159

Files:
  test/ELF/cref.s


Index: test/ELF/cref.s
===================================================================
--- test/ELF/cref.s
+++ test/ELF/cref.s
@@ -6,8 +6,8 @@
 // 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 %t.a -cref | FileCheck -strict-whitespace %s
+// RUN: ld.lld -shared -o %t1.so %t1.o
+// RUN: ld.lld -o /dev/null %t1.so %t2.o %t3.o %t.a -gc-sections -cref | FileCheck -strict-whitespace %s
 
 //      CHECK: Symbol                                            File
 // CHECK-NEXT: bar                                               {{.*}}2.o
@@ -19,8 +19,9 @@
 // CHECK-NEXT: baz                                               {{.*}}3.o
 // CHECK-NEXT: zed                                               {{.*}}.a({{.*}}a.o)
 // CHECK-NEXT:                                                   {{.*}}3.o
+// CHECK-NOT:  discarded
 
-.global _start, foo, bar, baz
+.global _start, foo, bar, baz, discarded
 _start:
   call foo
   call bar


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45159.141627.patch
Type: text/x-patch
Size: 1097 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180409/579711ea/attachment.bin>


More information about the llvm-commits mailing list