diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 20:10:20 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:20 -0700 |
commit | 115d9817bba7bf2eb44fe6a1e5f92100cad5553d (patch) | |
tree | f0c9a76e8b0630e2ff25b8a6a5f8a57777dd26d6 /gdb/target.c | |
parent | eb276a6b5b56eeb15729892d66d11782bbacbdfc (diff) | |
download | gdb-115d9817bba7bf2eb44fe6a1e5f92100cad5553d.zip gdb-115d9817bba7bf2eb44fe6a1e5f92100cad5553d.tar.gz gdb-115d9817bba7bf2eb44fe6a1e5f92100cad5553d.tar.bz2 |
convert to_call_history_range
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_call_history_range): Unconditionally delegate.
* target.h (struct target_ops) <to_call_history_range>: Use
TARGET_DEFAULT_NORETURN.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gdb/target.c b/gdb/target.c index 4468648..c3a73a8 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -4097,16 +4097,7 @@ target_call_history_from (ULONGEST begin, int size, int flags) void target_call_history_range (ULONGEST begin, ULONGEST end, int flags) { - struct target_ops *t; - - for (t = current_target.beneath; t != NULL; t = t->beneath) - if (t->to_call_history_range != NULL) - { - t->to_call_history_range (t, begin, end, flags); - return; - } - - tcomplain (); + current_target.to_call_history_range (¤t_target, begin, end, flags); } static void |