diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 20:16:56 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:24 -0700 |
commit | 8444ab58be111620c35932b1639a7b6b17845309 (patch) | |
tree | e50673706502a50cea45db6222073277a6eaa1fe /gdb/target.h | |
parent | c29302cc8aef5856ae6ed63cef46c17dcc1b790a (diff) | |
download | gdb-8444ab58be111620c35932b1639a7b6b17845309.zip gdb-8444ab58be111620c35932b1639a7b6b17845309.tar.gz gdb-8444ab58be111620c35932b1639a7b6b17845309.tar.bz2 |
convert to_insn_history_from
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_insn_history_from): Unconditionally delegate.
* target.h (struct target_ops) <to_insn_history_from>: 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 f53b73e..73288cf 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1054,7 +1054,8 @@ struct target_ops If SIZE < 0, disassemble abs (SIZE) instructions before FROM; otherwise, disassemble SIZE instructions after FROM. */ void (*to_insn_history_from) (struct target_ops *, - ULONGEST from, int size, int flags); + ULONGEST from, int size, int flags) + TARGET_DEFAULT_NORETURN (tcomplain ()); /* Disassemble a section of the recorded execution trace from instruction BEGIN (inclusive) to instruction END (inclusive). */ |