summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-05-15 13:14:52 -0700
committerJosh Stone <jistone@redhat.com>2009-05-15 13:31:22 -0700
commitb6fa229bc4b361a23f23daa13af634a0515230d6 (patch)
treebc1ba43e264939bc71a9690aec7d8c719b7c1a5a /tapsets.cxx
parentc94efd6357211094fce035d7435efe971bdf5ae1 (diff)
downloadsystemtap-steved-b6fa229bc4b361a23f23daa13af634a0515230d6.tar.gz
systemtap-steved-b6fa229bc4b361a23f23daa13af634a0515230d6.tar.xz
systemtap-steved-b6fa229bc4b361a23f23daa13af634a0515230d6.zip
Merge the dwflpp::query_cu_..._address methods
The method query_cu_containing_global_address was only called by query_cu_containing_module_address, and the latter was just doing a simple argument transform. They are now merged into a single method, query_cu_containing_address. The function module_address_to_global is also merged here at its only call site.
Diffstat (limited to 'tapsets.cxx')
-rw-r--r--tapsets.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tapsets.cxx b/tapsets.cxx
index 3aad1730..3437205f 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -751,7 +751,7 @@ dwarf_query::query_module_dwarf()
// NB: we don't need to add the module base address or bias
// value here (for reasons that may be coincidental).
- dw.query_cu_containing_module_address(addr, this);
+ dw.query_cu_containing_address(addr, this);
}
else
{