This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] MIPS gas: Replace S_IS_EXTERN by S_IS_EXTERNAL


Hi All,

this replaces S_IS_EXTERN by S_IS_EXTERNAL.


Thiemo


2002-07-19  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>

	/gas/ChangeLog
	* config/tc-mips.c (mips_need_elf_addend_fixup): Use S_IS_EXTERNAL
	instead of S_IS_EXTERN.
	(md_estimate_size_before_relax): Likewise.
	(mips_fix_adjustable): Likewise.


diff -BurpNX /bigdisk/src/gcc-exclude source-orig/gas/config/tc-mips.c source/gas/config/tc-mips.c
--- source-orig/gas/config/tc-mips.c	Thu Jul 11 21:23:30 2002
+++ source/gas/config/tc-mips.c	Mon Jul 15 23:39:55 2002
@@ -10867,7 +10888,7 @@ mips_need_elf_addend_fixup (fixP)
     return 1;
   if (mips_pic != EMBEDDED_PIC
       && (S_IS_WEAK (fixP->fx_addsy)
-	  || S_IS_EXTERN (fixP->fx_addsy))
+	  || S_IS_EXTERNAL (fixP->fx_addsy))
       && !S_IS_COMMON (fixP->fx_addsy))
     return 1;
   if (symbol_used_in_reloc_p (fixP->fx_addsy)
@@ -12693,7 +12715,8 @@ md_estimate_size_before_relax (fragp, se
 		/* A global or weak symbol is treated as external.  */
 	  	&& (OUTPUT_FLAVOR != bfd_target_elf_flavour
 		    || (! S_IS_WEAK (sym)
-			&& (! S_IS_EXTERN (sym) || mips_pic == EMBEDDED_PIC)))
+			&& (! S_IS_EXTERNAL (sym)
+			    || mips_pic == EMBEDDED_PIC)))
 #endif
 		);
     }
@@ -12735,7 +12758,7 @@ mips_fix_adjustable (fixp)
   /* Prevent all adjustments to global symbols.  */
   if (OUTPUT_FLAVOR == bfd_target_elf_flavour
       && mips_pic != EMBEDDED_PIC
-      && (S_IS_EXTERN (fixp->fx_addsy) || S_IS_WEAK (fixp->fx_addsy)))
+      && (S_IS_EXTERNAL (fixp->fx_addsy) || S_IS_WEAK (fixp->fx_addsy)))
     return 0;
 #endif
   if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]