aboutsummaryrefslogtreecommitdiff
path: root/libctf/ChangeLog
diff options
context:
space:
mode:
authorNick Alcock <nick.alcock@oracle.com>2021-01-27 19:55:45 +0000
committerNick Alcock <nick.alcock@oracle.com>2021-02-04 16:01:53 +0000
commitcaa170493e884215af4d07ea891ed1e2eeeb0578 (patch)
tree0d247c34146921550f50dd93081922fc2096132c /libctf/ChangeLog
parent78f28b89e8c7a2c9e262e2819f0da5629f226efc (diff)
downloadfsf-binutils-gdb-caa170493e884215af4d07ea891ed1e2eeeb0578.zip
fsf-binutils-gdb-caa170493e884215af4d07ea891ed1e2eeeb0578.tar.gz
fsf-binutils-gdb-caa170493e884215af4d07ea891ed1e2eeeb0578.tar.bz2
libctf: prohibit nameless ints, floats, typedefs and forwards
Now that "anonymous typedef nodes" have been extirpated, we can mandate that things that have names in C must have names in CTF too. (Unlike the no-forwards embarrassment, the deduplicator does nothing special with names: types that have names in C will have the same name in CTF. So we can assume that the CTF rules and the C rules are the same.) include/ChangeLog 2021-01-27 Nick Alcock <nick.alcock@oracle.com> * ctf-api.h (ECTF_NONAME): New. (ECTF_NERR): Adjust. libctf/ChangeLog 2021-01-27 Nick Alcock <nick.alcock@oracle.com> * ctf-create.c (ctf_add_encoded): Add check for non-empty name. (ctf_add_forward): Likewise. (ctf_add_typedef): Likewise.
Diffstat (limited to 'libctf/ChangeLog')
-rw-r--r--libctf/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/libctf/ChangeLog b/libctf/ChangeLog
index 9b0dad9..10178bc 100644
--- a/libctf/ChangeLog
+++ b/libctf/ChangeLog
@@ -1,5 +1,11 @@
2021-01-27 Nick Alcock <nick.alcock@oracle.com>
+ * ctf-create.c (ctf_add_encoded): Add check for non-empty name.
+ (ctf_add_forward): Likewise.
+ (ctf_add_typedef): Likewise.
+
+2021-01-27 Nick Alcock <nick.alcock@oracle.com>
+
* ctf-open.c (init_types): Rip out code to check anonymous typedef
nodes.
* ctf-create.c (ctf_add_reftype): Likewise.