diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2016-12-02 09:55:09 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2016-12-02 09:55:09 -0500 |
commit | 233c8c27eb81b0a3ab5182dcb59c7306ba9bd3f3 (patch) | |
tree | 9437e77a5689e8217ada7333e4c062a716f821fd /gdb/ChangeLog | |
parent | 68c638d6e655a937a48770a5df765e6ebbc5b890 (diff) | |
download | gdb-233c8c27eb81b0a3ab5182dcb59c7306ba9bd3f3.zip gdb-233c8c27eb81b0a3ab5182dcb59c7306ba9bd3f3.tar.gz gdb-233c8c27eb81b0a3ab5182dcb59c7306ba9bd3f3.tar.bz2 |
Remove mi_out_data::suppress_output
The suppress_output field of the mi_ui_out_data structure is never actually
set to 1/true. We can therefore remove it, and remove all the
if (suppress_output)
checks.
gdb/ChangeLog:
* mi/mi-out.c (mi_ui_out_data) <suppress_output>: Remove.
(mi_table_body): Remove suppress_output check.
(mi_table_end): Likewise.
(mi_table_header): Likewise.
(mi_begin): Likewise.
(mi_end): Likewise.
(mi_field_int): Likewise.
(mi_field_string): Likewise.
(mi_field_fmt): Likewise.
(mi_out_data_ctor): Likewise.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 72eeea4..2f8e611 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,16 @@ +2016-12-02 Simon Marchi <simon.marchi@ericsson.com> + + * mi/mi-out.c (mi_ui_out_data) <suppress_output>: Remove. + (mi_table_body): Remove suppress_output check. + (mi_table_end): Likewise. + (mi_table_header): Likewise. + (mi_begin): Likewise. + (mi_end): Likewise. + (mi_field_int): Likewise. + (mi_field_string): Likewise. + (mi_field_fmt): Likewise. + (mi_out_data_ctor): Likewise. + 2016-12-02 Yao Qi <yao.qi@linaro.org> Pedro Alves <palves@redhat.com> |