diff options
author | graydon <graydon> | 2005-07-06 01:32:09 +0000 |
---|---|---|
committer | graydon <graydon> | 2005-07-06 01:32:09 +0000 |
commit | 5227f1ea176e0a7af4eb7c51ef5d678ee67ad5df (patch) | |
tree | 7de149617814b5bcd1bc87511a97b7644dcf8114 /staptree.cxx | |
parent | 68cb0cb76051be893600fcb845089199f01e6839 (diff) | |
download | systemtap-steved-5227f1ea176e0a7af4eb7c51ef5d678ee67ad5df.tar.gz systemtap-steved-5227f1ea176e0a7af4eb7c51ef5d678ee67ad5df.tar.xz systemtap-steved-5227f1ea176e0a7af4eb7c51ef5d678ee67ad5df.zip |
2005-07-05 Graydon Hoare <graydon@redhat.com>
* elaborate.{h,cxx}: Revert previous changes.
* tapsets.{h,cxx}: Adapt to verbose as a member of session.
* elaborate.cxx (alias_expansion_builder::build): Avoid copying
locals between alias definition and use.
* testsuite/semok/{twelve,thirteen,fourteen}.stp: New tests.
* staptree.cxx (probe_alias::printsig): Print equals sign.
Diffstat (limited to 'staptree.cxx')
-rw-r--r-- | staptree.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/staptree.cxx b/staptree.cxx index 1243df98..e64c3710 100644 --- a/staptree.cxx +++ b/staptree.cxx @@ -435,6 +435,7 @@ void probe_alias::printsig (ostream& o) o << (i>0 ? " = " : ""); alias_names[i]->print (o); } + o << " = "; for (unsigned i=0; i<locations.size(); i++) { o << (i>0 ? ", " : ""); |