diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4f3af0d28f..43aace7811 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2014-05-05 Yao Qi + + * printcmd.c (display_command): Remove the check to + target_has_execution. + 2014-05-03 Mark Kettenis * ppcobsd-nat.c: Include "obsd-nat.h". diff --git a/gdb/printcmd.c b/gdb/printcmd.c index 87b14488b0..228d4ad0f8 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -1547,7 +1547,7 @@ display_command (char *arg, int from_tty) new->enabled_p = 1; display_chain = new; - if (from_tty && target_has_execution) + if (from_tty) do_one_display (new); dont_repeat ();