aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorJan Vrany <jan.vrany@fit.cvut.cz>2018-08-27 21:52:44 +0100
committerSimon Marchi <simon.marchi@ericsson.com>2018-08-27 17:12:41 -0400
commit3bf9c013e4a7b72aaa7e242e163a776ad7347c26 (patch)
tree0193a7e9e7bf7947eb50780b90e0fd97edccd858 /gdb/python
parent65b3d26e7d53ea03eb99791dd324d56c599f4c99 (diff)
downloadgdb-3bf9c013e4a7b72aaa7e242e163a776ad7347c26.zip
gdb-3bf9c013e4a7b72aaa7e242e163a776ad7347c26.tar.gz
gdb-3bf9c013e4a7b72aaa7e242e163a776ad7347c26.tar.bz2
MI: Fix printing of frame architecture with Python frame filters enabled
Commit 6d52907e226a (MI: Print frame architecture when printing frames on an MI channel) added frame's architecture to MI frame output. However the frame architecture was not correctly printed in the output of "-stack-list-frames" with frame filters enabled (via "-enable-frame-filters"). This was because with frame filters enabled, the actual frame printing is done in "py_print_frame" rather than "print_frame". This issue is now fixed. gdb/Changelog: 2018-08-27 Jan Vrany <jan.vrany@fit.cvut.cz> * python/py-framefilter.c (py_print_frame): Print frame architecture when printing on an MI output. gdb/testsuite/Changelog: 2018-08-27 Jan Vrany <jan.vrany@fit.cvut.cz> * gdb.python/py-framefilter-mi.exp: Update regexp to check for "arch" field in frame output.
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/py-framefilter.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/python/py-framefilter.c b/gdb/python/py-framefilter.c
index 4edefd4..fe17b70 100644
--- a/gdb/python/py-framefilter.c
+++ b/gdb/python/py-framefilter.c
@@ -958,6 +958,9 @@ py_print_frame (PyObject *filter, frame_filter_flags flags,
out->field_int ("line", line);
}
}
+ if (out->is_mi_like_p ())
+ out->field_string ("arch",
+ (gdbarch_bfd_arch_info (gdbarch))->printable_name);
}
/* For MI we need to deal with the "children" list population of