GNU Binutils with patches for OS216
Révision | 2ecc4b757df777b13c438485be2fe2601820df90 (tree) |
---|---|
l'heure | 2020-01-06 23:08:50 |
Auteur | Pedro Alves <palves@redh...> |
Commiter | Pedro Alves |
exceptions.c:print_flush: Remove obsolete check
Commit 20f0d60db4fb ("Avoid crash when calling warning too early"),
added a "current_top_target () != NULL" check to
target_supports_terminal_ours, so this check in exceptions.c is now
obsolete.
gdb/ChangeLog:
yyyy-mm-dd Pedro Alves <palves@redhat.com>
* exceptions.c (print_flush): Remove current_top_target() check.
@@ -39,11 +39,7 @@ print_flush (void) | ||
39 | 39 | deprecated_error_begin_hook (); |
40 | 40 | |
41 | 41 | gdb::optional<target_terminal::scoped_restore_terminal_state> term_state; |
42 | - /* While normally there's always something pushed on the target | |
43 | - stack, the NULL check is needed here because we can get here very | |
44 | - early during startup, before the target stack is first | |
45 | - initialized. */ | |
46 | - if (current_top_target () != NULL && target_supports_terminal_ours ()) | |
42 | + if (target_supports_terminal_ours ()) | |
47 | 43 | { |
48 | 44 | term_state.emplace (); |
49 | 45 | target_terminal::ours_for_output (); |