diff options
| author | Roland McGrath <[email protected]> | 2009-07-01 19:27:13 -0700 |
|---|---|---|
| committer | Roland McGrath <[email protected]> | 2009-07-01 19:27:13 -0700 |
| commit | fa779b66e4f32c468852a06eb990f7efb16cad61 (patch) | |
| tree | 81f2573a3218b2eb5f3aabf7292c2cd8210a9dc1 | |
| parent | a22d9ece9ff37d14ad40d7b1c046b50d450128c5 (diff) | |
remove debug output
| -rw-r--r-- | libdw/c++/dwarf_comparator | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/libdw/c++/dwarf_comparator b/libdw/c++/dwarf_comparator index add2b632..55a41717 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); |
