[binutils-gdb] Re: as: Replace the removed symbol with the versioned symbol

Alan Modra amodra@sourceware.org
Wed Aug 18 04:11:35 GMT 2021


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=a86733d63d40fd8d3a7a2640ebcc048414fb465f

commit a86733d63d40fd8d3a7a2640ebcc048414fb465f
Author: Alan Modra <amodra@gmail.com>
Date:   Wed Aug 18 13:21:33 2021 +0930

    Re: as: Replace the removed symbol with the versioned symbol
    
    Some targets, typically embedded without shared libraries, replace the
    relocation symbol with a section symbol (see tc_fix_adjustable).
    Allow the test to pass for such targets.  Fixes the following.
    
    avr-elf  +FAIL: symver symver16
    d10v-elf  +FAIL: symver symver16
    dlx-elf  +FAIL: symver symver16
    ip2k-elf  +FAIL: symver symver16
    m68k-elf  +FAIL: symver symver16
    mcore-elf  +FAIL: symver symver16
    pj-elf  +FAIL: symver symver16
    s12z-elf  +FAIL: symver symver16
    visium-elf  +FAIL: symver symver16
    z80-elf  +FAIL: symver symver16
    
            PR gas/28157
            * testsuite/gas/symver/symver16.d: Relax reloc match.

Diff:
---
 gas/testsuite/gas/symver/symver16.d | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gas/testsuite/gas/symver/symver16.d b/gas/testsuite/gas/symver/symver16.d
index cdf0ddde57d..ef335d5b260 100644
--- a/gas/testsuite/gas/symver/symver16.d
+++ b/gas/testsuite/gas/symver/symver16.d
@@ -4,9 +4,9 @@
 #...
 Relocation section .*
 #...
-[0-9a-f]+[ \t]+[0-9a-f]+[ \t]+R_.*[ \t]+[0-9a-f]+[ \t]+foo@@VERS_1.*
+[0-9a-f]+[ \t]+[0-9a-f]+[ \t]+R_.*[ \t]+[0-9a-f]+[ \t]+(foo@@VERS_1|\.data).*
 #...
-[0-9a-f]+[ \t]+[0-9a-f]+[ \t]+R_.*[ \t]+[0-9a-f]+[ \t]+bar@VERS_1.*
+[0-9a-f]+[ \t]+[0-9a-f]+[ \t]+R_.*[ \t]+[0-9a-f]+[ \t]+(bar@VERS_1|\.data).*
 #...
  +[0-9]+: 0+ +1 +OBJECT +GLOBAL +DEFAULT +[0-9]+ +foo@@VERS_1
  +[0-9]+: 0+1 +1 +OBJECT +GLOBAL +DEFAULT +[0-9]+ +bar@VERS_1


More information about the Binutils-cvs mailing list