aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 20:23:23 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:48:27 -0700
commite9179bb3de4d8f221223a2cd68c58114204d6100 (patch)
treef32d3eb5c3f5423111e1bd846974c64d8fad8fce /gdb/target.h
parent05969c841a349cbc9d628650b37d684526368445 (diff)
downloadgdb-e9179bb3de4d8f221223a2cd68c58114204d6100.zip
gdb-e9179bb3de4d8f221223a2cd68c58114204d6100.tar.gz
gdb-e9179bb3de4d8f221223a2cd68c58114204d6100.tar.bz2
convert to_goto_record_end
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (target_goto_record_end): Unconditionally delegate. * target.h (struct target_ops) <to_goto_record_end>: 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 0cf2e4d..cb1c431 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -1038,7 +1038,8 @@ struct target_ops
void (*to_goto_record_begin) (struct target_ops *);
/* Go to the end of the execution trace. */
- void (*to_goto_record_end) (struct target_ops *);
+ void (*to_goto_record_end) (struct target_ops *)
+ TARGET_DEFAULT_NORETURN (tcomplain ());
/* Go to a specific location in the recorded execution trace. */
void (*to_goto_record) (struct target_ops *, ULONGEST insn)