aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 20:22:36 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:48:26 -0700
commit05969c841a349cbc9d628650b37d684526368445 (patch)
treeb6c2756a70f230e9dc8e41413b9b994317003792 /gdb/target.h
parent3679abfabcafc0bd855c30b264d9260d7b77da53 (diff)
downloadgdb-05969c841a349cbc9d628650b37d684526368445.zip
gdb-05969c841a349cbc9d628650b37d684526368445.tar.gz
gdb-05969c841a349cbc9d628650b37d684526368445.tar.bz2
convert to_goto_record
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (target_goto_record): Unconditionally delegate. * target.h (struct target_ops) <to_goto_record>: Use TARGET_DEFAULT_NORETURN.
Diffstat (limited to 'gdb/target.h')
-rw-r--r--gdb/target.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h
index 71062c9..0cf2e4d 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -1041,7 +1041,8 @@ struct target_ops
void (*to_goto_record_end) (struct target_ops *);
/* Go to a specific location in the recorded execution trace. */
- void (*to_goto_record) (struct target_ops *, ULONGEST insn);
+ void (*to_goto_record) (struct target_ops *, ULONGEST insn)
+ TARGET_DEFAULT_NORETURN (tcomplain ());
/* Disassemble SIZE instructions in the recorded execution trace from
the current position.