From: Alan Modra Date: Mon, 4 Jan 2021 00:46:21 +0000 (+1030) Subject: PR27102, gas: "section symbols are already global" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dd933805d10b0035659dfec40630c30a0b33aa4c;p=binutils-gdb.git PR27102, gas: "section symbols are already global" PR 27102 * symbols.c (S_SET_EXTERNAL): Revise section symbol warning message and register symbol error message. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index b38c379a215..4c370a6ba54 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2021-01-04 Alan Modra + + PR 27102 + * symbols.c (S_SET_EXTERNAL): Revise section symbol warning + message and register symbol error message. + 2021-01-04 Alan Modra PR 27101 diff --git a/gas/symbols.c b/gas/symbols.c index f6e4b718ef7..289ccbee8e2 100644 --- a/gas/symbols.c +++ b/gas/symbols.c @@ -2431,14 +2431,13 @@ S_SET_EXTERNAL (symbolS *s) if (s->bsym->flags & BSF_SECTION_SYM) { /* Do not reassign section symbols. */ - as_warn (_("section symbols are already global")); + as_warn (_("can't make section symbol global")); return; } #ifndef TC_GLOBAL_REGISTER_SYMBOL_OK if (S_GET_SEGMENT (s) == reg_section) { - as_bad ("can't make register symbol `%s' global", - S_GET_NAME (s)); + as_bad (_("can't make register symbol global")); return; } #endif