diff options
author | Pedro Alves <palves@redhat.com> | 2011-05-26 18:23:32 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2011-05-26 18:23:32 +0000 |
commit | d8b344530cba74a754ec101ccdd8869b3a48ec90 (patch) | |
tree | dc20a0ff8d93fc103aeaac00750dd2441f8de255 /gdb/inferior.h | |
parent | 3ddcae71bb5390c67dcd033fdd0267b9f7aa38ad (diff) | |
download | fsf-binutils-gdb-d8b344530cba74a754ec101ccdd8869b3a48ec90.zip fsf-binutils-gdb-d8b344530cba74a754ec101ccdd8869b3a48ec90.tar.gz fsf-binutils-gdb-d8b344530cba74a754ec101ccdd8869b3a48ec90.tar.bz2 |
2011-05-26 Pedro Alves <pedro@codesourcery.com>
gdb/
* inferior.h (enum exec_direction_kind): Delete EXEC_ERROR.
* infrun.c (show_exec_direction_func): Don't handle EXEC_ERROR.
Internal error on invalid values.
* reverse.c: Don't handle EXEC_ERROR.
* mi/mi-main.c: Don't handle EXEC_ERROR.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 9949136..9982a7a 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -352,8 +352,7 @@ enum stop_kind enum exec_direction_kind { EXEC_FORWARD, - EXEC_REVERSE, - EXEC_ERROR + EXEC_REVERSE }; /* The current execution direction. This should only be set to enum |