diff options
author | Josh Stone <jistone@redhat.com> | 2009-08-07 18:51:19 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-08-07 18:51:19 -0700 |
commit | 23d106b9c554c2b32dfb8c94dc963834f65ef7df (patch) | |
tree | 2ab11874847b184da624c2c4d1397b7b35ca94c4 /tapsets.cxx | |
parent | 37c74d4bd7317033fcc30148358b7936ffd8b11a (diff) | |
download | systemtap-steved-23d106b9c554c2b32dfb8c94dc963834f65ef7df.tar.gz systemtap-steved-23d106b9c554c2b32dfb8c94dc963834f65ef7df.tar.xz systemtap-steved-23d106b9c554c2b32dfb8c94dc963834f65ef7df.zip |
Zap dwarf_diename_integrate
The dwarf_diename in elfutils learned a long time ago to use
dwarf_attr_integrate when looking up the name. Our minimum elfutils
0.126 has this, so we don't need to kludge it ourselves.
Diffstat (limited to 'tapsets.cxx')
-rw-r--r-- | tapsets.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tapsets.cxx b/tapsets.cxx index f91d15d3..8d0e0ab2 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -5607,7 +5607,7 @@ dwarf_type_name(Dwarf_Die& type_die, string& c_type) } if (done) { - c_type.append(dwarf_diename_integrate(&type_die)); + c_type.append(dwarf_diename(&type_die)); return true; } @@ -5699,7 +5699,7 @@ tracepoint_derived_probe::build_args(dwflpp& dw, Dwarf_Die& func_die) { // build a tracepoint_arg for this parameter tracepoint_arg tparg; - tparg.name = dwarf_diename_integrate(&arg); + tparg.name = dwarf_diename(&arg); // read the type of this parameter Dwarf_Attribute type_attr; |