* config/tc-s390.c (tc_s390_fix_adjustable): Re-add patch to prevent
authorMartin Schwidefsky <schwidefsky@de.ibm.com>
Tue, 19 Nov 2002 14:58:54 +0000 (14:58 +0000)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Tue, 19 Nov 2002 14:58:54 +0000 (14:58 +0000)
adjustments to symbols in merge sections.

gas/ChangeLog
gas/config/tc-s390.c

index e785974..2c3d197 100644 (file)
@@ -1,3 +1,8 @@
+2002-11-19  Martin Schwidefsky  <schwidefsky@de.ibm.com>
+
+       * config/tc-s390.c (tc_s390_fix_adjustable): Re-add patch to prevent
+       adjustments to symbols in merge sections.
+
 2002-11-19  Luke Deller <luked@cse.unsw.edu.au>
 
        * config/tc-alpha.c (s_alpha_prologue): as_bad when sym is NULL.
index 71f0e3b..d7e6fe6 100644 (file)
@@ -1629,6 +1629,9 @@ int
 tc_s390_fix_adjustable (fixP)
      fixS *fixP;
 {
+  /* Don't adjust references to merge sections.  */
+  if ((S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0)
+    return 0;
   /* adjust_reloc_syms doesn't know about the GOT.  */
   if (   fixP->fx_r_type == BFD_RELOC_32_GOTOFF
       || fixP->fx_r_type == BFD_RELOC_390_PLT16DBL