From: Roland McGrath Date: Thu, 2 Jul 2009 02:27:13 +0000 (-0700) Subject: remove debug output X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa779b66e4f32c468852a06eb990f7efb16cad61;p=thirdparty%2Felfutils.git remove debug output --- diff --git a/libdw/c++/dwarf_comparator b/libdw/c++/dwarf_comparator index add2b6326..55a417170 100644 --- a/libdw/c++/dwarf_comparator +++ b/libdw/c++/dwarf_comparator @@ -349,11 +349,7 @@ namespace elfutils // Maybe the tracker has already cached a correspondence of DIEs. typename tracker::reference_match matched; if (_m_tracker.reference_matched (matched, a, b)) - { - std::cout << "short-circuit DIE match " << std::hex << a->offset () - << std::endl; - return true; - } + return true; if (matched.cannot_match ()) return false; @@ -474,19 +470,11 @@ namespace elfutils // Maybe the tracker has already cached a correspondence of references. typename tracker::reference_match matched; if (_m_tracker.reference_matched (matched, ref1, ref2)) - { - std::cout << "short-circuit ref match " << std::hex << a.offset () - << std::endl; - return true; - } + return true; if (matched.cannot_match ()) return false; - std::cout << "considering ref " - << std::hex << a.offset () << " vs " - << std::hex << b.offset () << std::endl; - // Now we really have to get the tracker involved. const typename tracker::left_context_type &lhs = _m_tracker.left_context (ref1);