From 396afcee5ada2d207b7a6691d4b7ce473e7b2a65 Mon Sep 17 00:00:00 2001 From: fche Date: Mon, 2 Apr 2007 21:17:35 +0000 Subject: 2007-04-02 Frank Ch. Eigler * tapsets.cxx (query_dwarf_func): Skip non-inlined functions for .function().inline case. 2007-04-02 Frank Ch. Eigler * socket-trace.stp, small_demos/prof.stp, top.stp: Adapt to .inline -> .function change. * semko/twentyone.stp: Ditto. --- tapsets.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tapsets.cxx') diff --git a/tapsets.cxx b/tapsets.cxx index f71f6df5..ba2ffd87 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -2624,7 +2624,7 @@ query_dwarf_func (Dwarf_Die * func, void * arg) << "\n"; q->dw.iterate_over_inline_instances (query_dwarf_inline_instance, arg); } - else if (!q->dw.func_is_inline ()) + else if (!q->dw.func_is_inline () && (! q->has_inline)) { bool record_this_function = false; -- cgit