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.
This commit is contained in:
Tom Tromey 2013-12-18 20:10:20 -07:00
parent eb276a6b5b
commit 115d9817bb
4 changed files with 26 additions and 11 deletions

View file

@ -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 (&current_target, begin, end, flags);
}
static void