diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8f614410a7..1febb54aad 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2010-08-31 Michael Snyder + + * infrun.c (set_exec_direction_func): Error out if target does not + support reverse execution. + 2010-08-31 Jan Kratochvil Make linux_get_siginfo_type `type *' unique. diff --git a/gdb/infrun.c b/gdb/infrun.c index dd89e788ea..8b1f82a7f8 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -6437,6 +6437,11 @@ set_exec_direction_func (char *args, int from_tty, else if (!strcmp (exec_direction, exec_reverse)) execution_direction = EXEC_REVERSE; } + else + { + exec_direction = exec_forward; + error (_("Target does not support this operation.")); + } } static void