diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 20:15:44 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:23 -0700 |
commit | c29302cc8aef5856ae6ed63cef46c17dcc1b790a (patch) | |
tree | 1dcaab4226b5ddf6df10d59ce2ced617ec901c20 /gdb/target.h | |
parent | 170049d41c3cb8becb46e8e71a30f67f5d47d5ad (diff) | |
download | gdb-c29302cc8aef5856ae6ed63cef46c17dcc1b790a.zip gdb-c29302cc8aef5856ae6ed63cef46c17dcc1b790a.tar.gz gdb-c29302cc8aef5856ae6ed63cef46c17dcc1b790a.tar.bz2 |
convert to_insn_history_range
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_insn_history_range): Unconditionally delegate.
* target.h (struct target_ops) <to_insn_history_range>: 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 9f7a3dc..f53b73e 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1059,7 +1059,8 @@ struct target_ops /* Disassemble a section of the recorded execution trace from instruction BEGIN (inclusive) to instruction END (inclusive). */ void (*to_insn_history_range) (struct target_ops *, - ULONGEST begin, ULONGEST end, int flags); + ULONGEST begin, ULONGEST end, int flags) + TARGET_DEFAULT_NORETURN (tcomplain ()); /* Print a function trace of the recorded execution trace. If SIZE < 0, print abs (SIZE) preceding functions; otherwise, print SIZE |