diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-03-09 14:56:09 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-03-09 16:32:00 -0500 |
commit | 287de65625a667b6403d0606fa75b67926ec7230 (patch) | |
tree | a4911b3dc540ba6a54e0aebbbe972cec6f1d8be1 /gdb/mi | |
parent | 2562954ede66f32bff7d985e752b8052c2ae5775 (diff) | |
download | gdb-287de65625a667b6403d0606fa75b67926ec7230.zip gdb-287de65625a667b6403d0606fa75b67926ec7230.tar.gz gdb-287de65625a667b6403d0606fa75b67926ec7230.tar.bz2 |
gdb, gdbserver, gdbsupport: fix whitespace issues
Replace spaces with tabs in a bunch of places.
Change-Id: If0f87180f1d13028dc178e5a8af7882a067868b0
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-cmd-var.c | 4 | ||||
-rw-r--r-- | gdb/mi/mi-cmds.c | 14 |
2 files changed, 8 insertions, 10 deletions
diff --git a/gdb/mi/mi-cmd-var.c b/gdb/mi/mi-cmd-var.c index 1cf6d3c..e026c23 100644 --- a/gdb/mi/mi-cmd-var.c +++ b/gdb/mi/mi-cmd-var.c @@ -637,9 +637,7 @@ mi_cmd_var_update (const char *command, char **argv, int argc) only the root VAROBJs. */ all_root_varobjs ([=] (varobj *var) - { - mi_cmd_var_update_iter (var, *name == '0', print_values); - }); + { mi_cmd_var_update_iter (var, *name == '0', print_values); }); } else { diff --git a/gdb/mi/mi-cmds.c b/gdb/mi/mi-cmds.c index aa0f38a..284453d 100644 --- a/gdb/mi/mi-cmds.c +++ b/gdb/mi/mi-cmds.c @@ -38,7 +38,7 @@ struct mi_command_mi : public mi_command constructor, FUNC is the function called from do_invoke, which implements this MI command. */ mi_command_mi (const char *name, mi_cmd_argv_ftype func, - int *suppress_notification) + int *suppress_notification) : mi_command (name, suppress_notification), m_argv_function (func) { @@ -75,7 +75,7 @@ struct mi_command_cli : public mi_command forwarded to CLI_NAME as its argument string, otherwise, if ARGS_P is false, nullptr is send to CLI_NAME as its argument string. */ mi_command_cli (const char *name, const char *cli_name, bool args_p, - int *suppress_notification) + int *suppress_notification) : mi_command (name, suppress_notification), m_cli_name (cli_name), m_args_p (args_p) @@ -232,11 +232,11 @@ add_builtin_mi_commands () add_mi_cmd_mi ("catch-unload", mi_cmd_catch_unload, &mi_suppress_notification.breakpoint); add_mi_cmd_mi ("catch-throw", mi_cmd_catch_throw, - &mi_suppress_notification.breakpoint), + &mi_suppress_notification.breakpoint), add_mi_cmd_mi ("catch-rethrow", mi_cmd_catch_rethrow, - &mi_suppress_notification.breakpoint), + &mi_suppress_notification.breakpoint), add_mi_cmd_mi ("catch-catch", mi_cmd_catch_catch, - &mi_suppress_notification.breakpoint), + &mi_suppress_notification.breakpoint), add_mi_cmd_mi ("complete", mi_cmd_complete); add_mi_cmd_mi ("data-disassemble", mi_cmd_disassemble); add_mi_cmd_mi ("data-evaluate-expression", mi_cmd_data_evaluate_expression); @@ -315,9 +315,9 @@ add_builtin_mi_commands () add_mi_cmd_mi ("symbol-info-types", mi_cmd_symbol_info_types); add_mi_cmd_mi ("symbol-info-modules", mi_cmd_symbol_info_modules); add_mi_cmd_mi ("symbol-info-module-functions", - mi_cmd_symbol_info_module_functions); + mi_cmd_symbol_info_module_functions); add_mi_cmd_mi ("symbol-info-module-variables", - mi_cmd_symbol_info_module_variables); + mi_cmd_symbol_info_module_variables); add_mi_cmd_cli ("target-attach", "attach", 1); add_mi_cmd_mi ("target-detach", mi_cmd_target_detach); add_mi_cmd_cli ("target-disconnect", "disconnect", 0); |