aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2012-02-09 15:14:46 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2012-02-09 15:14:46 +0000
commitf4859d94a05ee84d491fcc2bdb221da6670dbe52 (patch)
tree4d2a5cad88250f4162008756c82590ff6bea1586
parentc56a97f95713fc5b910d70ba4f38159c53149bc9 (diff)
downloadbinutils-f4859d94a05ee84d491fcc2bdb221da6670dbe52.zip
binutils-f4859d94a05ee84d491fcc2bdb221da6670dbe52.tar.gz
binutils-f4859d94a05ee84d491fcc2bdb221da6670dbe52.tar.bz2
gdb/
* gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print flds_bnds.fields. (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/gdb-gdb.py4
2 files changed, 8 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index cb05fb5..8da3f73 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,11 @@
2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
+ * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
+ flds_bnds.fields.
+ (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
+
+2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
+
* breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
2012-02-08 Joel Brobecker <brobecker@adacore.com>
diff --git a/gdb/gdb-gdb.py b/gdb/gdb-gdb.py
index 7dace99..579500f 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