+2010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
+
+ * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
+ instead of selected frame architecture.
+
2010-03-18 Pedro Alves <pedro@codesourcery.com>
* infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
void
mi_cmd_data_list_register_names (char *command, char **argv, int argc)
{
- struct frame_info *frame;
struct gdbarch *gdbarch;
int regnum, numregs;
int i;
In this case, some entries of gdbarch_register_name will change depending
upon the particular processor being debugged. */
- frame = get_selected_frame (NULL);
- gdbarch = get_frame_arch (frame);
+ gdbarch = get_current_arch ();
numregs = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
cleanup = make_cleanup_ui_out_list_begin_end (uiout, "register-names");
+2010-03-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
+
+ * gdb.mi/gdb680.exp: Revert 2009-06-17 change.
+
2010-03-18 Pedro Alves <pedro@codesourcery.com>
* gdb.base/default.exp: Adjust the expected output of the finish
proc do_test {count} {
mi_gdb_test "-data-list-register-names -1" \
- {\^error,msg=\"No registers.\"} \
+ {\^error,msg=\"bad register number\"} \
"-data-list-register-names -1, try $count"
}