summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2020-01-06 14:08:50 +0000
committerPedro Alves <palves@redhat.com>2020-01-06 14:08:50 +0000
commit2ecc4b757df777b13c438485be2fe2601820df90 (patch)
tree9bcf8798cf064914b4c90cb63cee4d9d7f4b6efc
parenta0720004e75765951fa4ae91149f93eaf5835297 (diff)
downloadbinutils-gdb-2ecc4b757df777b13c438485be2fe2601820df90.tar.gz
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.
-rw-r--r--gdb/exceptions.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/gdb/exceptions.c b/gdb/exceptions.c
index 587988ac803..52cee4e2f6d 100644
--- a/gdb/exceptions.c
+++ b/gdb/exceptions.c
@@ -39,11 +39,7 @@ print_flush (void)
deprecated_error_begin_hook ();
gdb::optional<target_terminal::scoped_restore_terminal_state> term_state;
- /* While normally there's always something pushed on the target
- stack, the NULL check is needed here because we can get here very
- early during startup, before the target stack is first
- initialized. */
- if (current_top_target () != NULL && target_supports_terminal_ours ())
+ if (target_supports_terminal_ours ())
{
term_state.emplace ();
target_terminal::ours_for_output ();