diff options
Diffstat (limited to 'gdb/gdb-gdb.py')
-rw-r--r-- | gdb/gdb-gdb.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/gdb-gdb.py b/gdb/gdb-gdb.py index 9b8ac62..5cc045b 100644 --- a/gdb/gdb-gdb.py +++ b/gdb/gdb-gdb.py @@ -209,6 +209,8 @@ class StructMainTypePrettyPrinter: img = ("calling_convention = %d" % type_specific['func_stuff']['calling_convention']) # tail_call_list is not printed. + elif type_specific_kind == "TYPE_SPECIFIC_SELF_TYPE": + img = "self_type = %s" % type_specific['self_type'] else: img = ("type_specific = ??? (unknown type_secific_kind: %s)" % type_specific_kind) |