gdb-gdb.py.in: Don't print value's tag_name

This has been removed recently.

gdb/ChangeLog:

	* gdb-gdb.py.in (StructMainTypePrettyPrinter) <to_string>: Don't
	print tag_name.
This commit is contained in:
Simon Marchi 2018-06-27 14:32:07 -04:00
parent 68ad5fb9aa
commit 189366cd86
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2018-06-27 Simon Marchi <simon.marchi@ericsson.com>
* gdb-gdb.py.in (StructMainTypePrettyPrinter) <to_string>: Don't
print tag_name.
2018-06-27 Simon Marchi <simon.marchi@ericsson.com>
* gdb-gdb.py.in (TypeFlag) <__cmp__>: Remove.

View File

@ -209,7 +209,6 @@ class StructMainTypePrettyPrinter:
"""
fields = []
fields.append("name = %s" % self.val['name'])
fields.append("tag_name = %s" % self.val['tag_name'])
fields.append("code = %s" % self.val['code'])
fields.append("flags = [%s]" % self.flags_to_string())
fields.append("owner = %s" % self.owner_to_string())