summaryrefslogtreecommitdiff
path: root/gdb/gdb-gdb.py
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2012-02-09 15:14:43 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2012-02-09 15:14:43 +0000
commitd1b75579ce98a53b2d28875ce6dbd3a9dd7a3e6a (patch)
treee9dc90a9f6bc3cdcc67bb200c7ff1b29b9d30131 /gdb/gdb-gdb.py
parent6b9f2e1d097baca06d08fd126f69c710f4e704f1 (diff)
downloadgdb-d1b75579ce98a53b2d28875ce6dbd3a9dd7a3e6a.tar.gz
gdb/
* gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print flds_bnds.fields. (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
Diffstat (limited to 'gdb/gdb-gdb.py')
-rw-r--r--gdb/gdb-gdb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdb-gdb.py b/gdb/gdb-gdb.py
index 7dace99bd2d..579500fdd3b 100644
--- a/gdb/gdb-gdb.py
+++ b/gdb/gdb-gdb.py
@@ -166,7 +166,7 @@ class StructMainTypePrettyPrinter:
"""Return an image of the main_type field number FIELDNO.
"""
f = self.val['flds_bnds']['fields'][fieldno]
- label = "field[%d]:" % fieldno
+ label = "flds_bnds.fields[%d]:" % fieldno
if f['artificial']:
label += " (artificial)"
fields = []
@@ -186,7 +186,7 @@ class StructMainTypePrettyPrinter:
high = str(b['high'])
if b['high_undefined'] != 0:
high += " (undefined)"
- return "bounds = {%s, %s}" % (low, high)
+ return "flds_bnds.bounds = {%s, %s}" % (low, high)
def type_specific_img(self):
"""Return a string image of the main_type type_specific union.
Only the relevant component of that union is printed (based on