diff options
author | Pedro Alves <palves@redhat.com> | 2007-09-04 01:38:07 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2007-09-04 01:38:07 +0000 |
commit | 1d751abe593143f9557fb862f8e06280259cf47f (patch) | |
tree | 2437b615d9fbd8b1599680159e21cd65da57c84b /gdb/infcmd.c | |
parent | de1b3c3d02b5d4c969a36d3bddcedbbce2551d19 (diff) | |
download | gdb-1d751abe593143f9557fb862f8e06280259cf47f.zip gdb-1d751abe593143f9557fb862f8e06280259cf47f.tar.gz gdb-1d751abe593143f9557fb862f8e06280259cf47f.tar.bz2 |
Revert accidentally committed hunk... Sorry.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 1690b5c..1f687de 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1197,11 +1197,11 @@ print_return_value (int struct_return, struct type *value_type) internal_error (__FILE__, __LINE__, _("bad switch")); } - stb = ui_out_stream_new (uiout); - old_chain = make_cleanup_ui_out_stream_delete (stb); if (value) { /* Print it. */ + stb = ui_out_stream_new (uiout); + old_chain = make_cleanup_ui_out_stream_delete (stb); ui_out_text (uiout, "Value returned is "); ui_out_field_fmt (uiout, "gdb-result-var", "$%d", record_latest_value (value)); @@ -1209,16 +1209,15 @@ print_return_value (int struct_return, struct type *value_type) value_print (value, stb->stream, 0, Val_no_prettyprint); ui_out_field_stream (uiout, "return-value", stb); ui_out_text (uiout, "\n"); + do_cleanups (old_chain); } else { - /* Just print the type. */ ui_out_text (uiout, "Value returned has type: "); - type_print (value_type, NULL, stb->stream, 0); - ui_out_field_stream (uiout, "return-type", stb); - ui_out_text (uiout, ". Cannot determine contents.\n"); + ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type)); + ui_out_text (uiout, "."); + ui_out_text (uiout, " Cannot determine contents\n"); } - do_cleanups (old_chain); } /* Stuff that needs to be done by the finish command after the target |