summaryrefslogtreecommitdiff
path: root/gdbsupport/tdesc.cc
diff options
context:
space:
mode:
authorChungyi Chi <demonic@csie.io>2020-12-01 11:06:08 +0000
committerAndrew Burgess <andrew.burgess@embecosm.com>2020-12-01 11:22:24 +0000
commit4f36e61b2dee8de793b09670378229dfe2750803 (patch)
tree22721b8ede1760c8b18fb6db5f9e3ddcf98c5f77 /gdbsupport/tdesc.cc
parent6729e2c2af2bd94408430734316597843718a484 (diff)
gdbsupport/tdesc: print enum size attribute
According to gdb online docs[1], XML target description enum types have both name and size attributes. Currently GDB does not print the size attribute. This commit fixes this. This change will be visible in the output of the command `maint print xml-tdesc`. There are other bugs with the print of enum types in XML target descriptions, the next commit will fix these and include a test that covers this patch. [1] https://sourceware.org/gdb/current/onlinedocs/gdb/Enum-Target-Types.html#Enum-Target-Types gdbsupport/ChangeLog: * tdesc.cc (print_xml_feature::visit): Print enum size attribute.
Diffstat (limited to 'gdbsupport/tdesc.cc')
-rw-r--r--gdbsupport/tdesc.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdbsupport/tdesc.cc b/gdbsupport/tdesc.cc
index c2a3af700e3..2bc0247907d 100644
--- a/gdbsupport/tdesc.cc
+++ b/gdbsupport/tdesc.cc
@@ -351,6 +351,8 @@ void print_xml_feature::visit (const tdesc_type_with_fields *t)
break;
case TDESC_TYPE_ENUM:
+ if (t->size > 0)
+ string_appendf (tmp, " size=\"%d\"", t->size);
string_appendf (tmp, ">");
add_line (tmp);
for (const tdesc_type_field &f : t->fields)