[lld] r343669 - [ELF] - Fix BB after r343668

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 3 02:59:08 PDT 2018


Author: grimar
Date: Wed Oct  3 02:59:08 2018
New Revision: 343669

URL: http://llvm.org/viewvc/llvm-project?rev=343669&view=rev
Log:
[ELF] - Fix BB after r343668

This stops testing the value of .rela.plt section offset.

Also makes _start global to eliminate
'cannot find entry symbol _start' warning.

Modified:
    lld/trunk/test/ELF/local-ver-preemptible.s

Modified: lld/trunk/test/ELF/local-ver-preemptible.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/local-ver-preemptible.s?rev=343669&r1=343668&r2=343669&view=diff
==============================================================================
--- lld/trunk/test/ELF/local-ver-preemptible.s (original)
+++ lld/trunk/test/ELF/local-ver-preemptible.s Wed Oct  3 02:59:08 2018
@@ -9,7 +9,7 @@
 # RUN: ld.lld %t.o %t.so -o %t -version-script %t.script
 # RUN: llvm-readelf -r --symbols %t | FileCheck %s
 
-# CHECK:      Relocation section '.rela.plt' at offset 0x288 contains 1 entries:
+# CHECK:      Relocation section '.rela.plt' at offset {{.*}} contains 1 entries:
 # CHECK:        R_X86_64_JUMP_SLOT 0000000000201020 foo + 0
 
 # CHECK:      Symbol table '.dynsym' contains 2 entries:
@@ -17,5 +17,6 @@
 # CHECK-NEXT:     0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND @
 # CHECK-NEXT:     1: 0000000000201020     0 FUNC    GLOBAL DEFAULT  UND foo@
 
+.globl _start
 _start:
   movl $foo - ., %eax




More information about the llvm-commits mailing list