diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2020-07-29 13:50:10 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2020-08-27 13:16:39 +0100 |
commit | 5e9b84f7a2e13af9ed00e262ad844e192b88ea8c (patch) | |
tree | 3d66a4b83d070f5be4c923871a9dda4fe3cebff6 /ld/ldlang.c | |
parent | 926c9e7665707d2f2eeb705b410e485f6930ab38 (diff) | |
download | gdb-5e9b84f7a2e13af9ed00e262ad844e192b88ea8c.zip gdb-5e9b84f7a2e13af9ed00e262ad844e192b88ea8c.tar.gz gdb-5e9b84f7a2e13af9ed00e262ad844e192b88ea8c.tar.bz2 |
binutils, ld: dequote libctf error messages
These are not identifiers and should not be quoted. (Also, quoting them
just looks odd.)
Adjust diagnostics tests accordingly.
binutils/ChangeLog
2020-08-27 Nick Alcock <nick.alcock@oracle.com>
* objdump.c (dump_ctf_errs): Unquote CTF error messages.
* readelf.c (dump_ctf_errs): Likewise.
ld/ChangeLog
2020-08-27 Nick Alcock <nick.alcock@oracle.com>
* ldlang.c (dump_ctf_errs): Unquote CTF error messages.
(ldlang_open_ctf): Likewise.
(lang_merge_ctf): Likewise.
(lang_write_ctf): Likewise.
* testsuite/ld-ctf/diag-ctf-version-f.d: Adjust.
* testsuite/ld-ctf/diag-cttname-invalid.d: Adjust.
* testsuite/ld-ctf/diag-decompression-failure.d: Adjust.
* testsuite/ld-ctf/diag-parname.d: Adjust.
* testsuite/ld-ctf/diag-unsupported-flag.d: Adjust.
* testsuite/ld-ctf/diag-wrong-magic-number-mixed.d: Adjust.
* testsuite/ld-ctf/diag-wrong-magic-number.d: Adjust.
Diffstat (limited to 'ld/ldlang.c')
-rw-r--r-- | ld/ldlang.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/ldlang.c b/ld/ldlang.c index dc6f1b4..4249b3a 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -3683,7 +3683,7 @@ lang_ctf_errs_warnings (ctf_file_t *fp) while ((text = ctf_errwarning_next (fp, &i, &is_warning, &err)) != NULL) { - einfo (_("%s: `%s'\n"), is_warning ? _("CTF warning"): _("CTF error"), + einfo (_("%s: %s\n"), is_warning ? _("CTF warning"): _("CTF error"), text); free (text); } @@ -3724,7 +3724,7 @@ ldlang_open_ctf (void) { lang_ctf_errs_warnings (NULL); einfo (_("%P: warning: CTF section in %pB not loaded; " - "its types will be discarded: `%s'\n"), file->the_bfd, + "its types will be discarded: %s\n"), file->the_bfd, ctf_errmsg (err)); } continue; @@ -3814,7 +3814,7 @@ lang_merge_ctf (void) { lang_ctf_errs_warnings (ctf_output); einfo (_("%P: warning: CTF linking failed; " - "output will have no CTF section: `%s'\n"), + "output will have no CTF section: %s\n"), ctf_errmsg (ctf_errno (ctf_output))); if (output_sect) { @@ -3874,7 +3874,7 @@ lang_write_ctf (int late) if (!output_sect->contents) { einfo (_("%P: warning: CTF section emission failed; " - "output will have no CTF section: `%s'\n"), + "output will have no CTF section: %s\n"), ctf_errmsg (ctf_errno (ctf_output))); output_sect->size = 0; output_sect->flags |= SEC_EXCLUDE; |