aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Alcock <nick.alcock@oracle.com>2024-07-15 19:59:13 +0100
committerNick Alcock <nick.alcock@oracle.com>2024-08-01 14:30:21 +0100
commit08b94b31091908019e3e3952a256c64540add25d (patch)
tree52840c66efb206b9388498ddf67cfac89e58c097
parent32854fe39f0e3ac9380562c893ee27d566c8334a (diff)
downloadgdb-08b94b31091908019e3e3952a256c64540add25d.zip
gdb-08b94b31091908019e3e3952a256c64540add25d.tar.gz
gdb-08b94b31091908019e3e3952a256c64540add25d.tar.bz2
libctf: improve ECTF_NOPARENT error message
This erorr doesn't just indicate that there is no parent dictionary (that's routine, and true of all dicts that are parents themselves) but that a parent is *needed* but wasn't found. include/ * ctf-api.h (_CTF_ERRORS) [ECTF_NOPARENT]: Improve error message. ld/ * testsuite/ld-ctf/diag-parname.d: Adjust.
-rw-r--r--include/ctf-api.h2
-rw-r--r--ld/testsuite/ld-ctf/diag-parname.d2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/ctf-api.h b/include/ctf-api.h
index f1087bc..ad5add2 100644
--- a/include/ctf-api.h
+++ b/include/ctf-api.h
@@ -196,7 +196,7 @@ typedef struct ctf_snapshot_id
_CTF_ITEM (ECTF_NOCTFDATA, "File does not contain CTF data.") \
_CTF_ITEM (ECTF_NOCTFBUF, "Buffer does not contain CTF data.") \
_CTF_ITEM (ECTF_NOSYMTAB, "Symbol table information is not available.") \
- _CTF_ITEM (ECTF_NOPARENT, "The parent CTF dictionary is unavailable.") \
+ _CTF_ITEM (ECTF_NOPARENT, "The parent CTF dictionary is needed but unavailable.") \
_CTF_ITEM (ECTF_DMODEL, "Data model mismatch.") \
_CTF_ITEM (ECTF_LINKADDEDLATE, "File added to link too late.") \
_CTF_ITEM (ECTF_ZALLOC, "Failed to allocate (de)compression buffer.") \
diff --git a/ld/testsuite/ld-ctf/diag-parname.d b/ld/testsuite/ld-ctf/diag-parname.d
index f8fcd68..4672f71 100644
--- a/ld/testsuite/ld-ctf/diag-parname.d
+++ b/ld/testsuite/ld-ctf/diag-parname.d
@@ -2,4 +2,4 @@
#source: diag-parname.s
#ld: -shared --ctf-variables
#name: Diagnostics - No parent dictionary
-#warning: CTF linking failed; output will have no CTF section: The parent CTF dictionary is unavailable
+#warning: CTF linking failed; output will have no CTF section: The parent CTF dictionary is needed but unavailable