diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 20:18:49 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:25 -0700 |
commit | 3679abfabcafc0bd855c30b264d9260d7b77da53 (patch) | |
tree | 522e1af3c9cb82b6d3231bdd0df18c52027d7451 /gdb/target.h | |
parent | 8444ab58be111620c35932b1639a7b6b17845309 (diff) | |
download | gdb-3679abfabcafc0bd855c30b264d9260d7b77da53.zip gdb-3679abfabcafc0bd855c30b264d9260d7b77da53.tar.gz gdb-3679abfabcafc0bd855c30b264d9260d7b77da53.tar.bz2 |
convert to_insn_history
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_insn_history): Unconditionally delegate.
* target.h (struct target_ops) <to_insn_history>: Use
TARGET_DEFAULT_NORETURN.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h index 73288cf..71062c9 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1047,7 +1047,8 @@ struct target_ops the current position. If SIZE < 0, disassemble abs (SIZE) preceding instructions; otherwise, disassemble SIZE succeeding instructions. */ - void (*to_insn_history) (struct target_ops *, int size, int flags); + void (*to_insn_history) (struct target_ops *, int size, int flags) + TARGET_DEFAULT_NORETURN (tcomplain ()); /* Disassemble SIZE instructions in the recorded execution trace around FROM. |