"Fix" ASM_WEAKEN_LABEL so libgcc2 will compile happily. This _should_ be

fixed in libbfd for compliance with the other platforms when switching to
egcs as the compiler for arm32.
This commit is contained in:
tv 1998-06-09 17:58:27 +00:00
parent d74e1744f5
commit 1a9b4ce852

View File

@ -168,3 +168,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#undef STRUCTURE_SIZE_BOUNDARY
#define STRUCTURE_SIZE_BOUNDARY 8
#undef ASM_WEAKEN_LABEL
#define ASM_WEAKEN_LABEL(FILE,NAME) \
do { fputs ("\t.global\t", FILE); assemble_name (FILE, NAME); \
fputs ("\n\t.weak\t", FILE); assemble_name (FILE, NAME); \
fputc ('\n', FILE); } while (0)