summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wielaard <[email protected]>2011-02-18 09:58:28 +0100
committerMark Wielaard <[email protected]>2011-02-19 00:00:34 +0100
commitebf8e9f5c7789813ab4ed5e8969e8353eb32331f (patch)
treeb66b226c2b89ead62c139789bc2e6a367320fe10
parent7702c87c53110fe8c515fd70e266c463c9962a71 (diff)
Never recalculate local hash, always reuse die_info stored one.
-rw-r--r--libdw/c++/dwarf_output2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdw/c++/dwarf_output b/libdw/c++/dwarf_output
index 27ce8509..d60bb977 100644
--- a/libdw/c++/dwarf_output
+++ b/libdw/c++/dwarf_output
@@ -1820,7 +1820,7 @@ namespace elfutils
{
if (_m_final)
return _m_final->first.local_hash ();
- return _m_pending->calculate_local_hash ();
+ return _m_pending->_m_info->_m_local_hash;
}
};