From f4b2849102b2a195dd79bede8ec58f46fb99435e Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 5 Jul 2005 20:38:37 +0000 Subject: 2005-07-05 Frank Ch. Eigler * elaborate.h (systemtap_session): Add more command-line arguments. * staptree.h (verbose): Bad global, no donut. * elaborate.cxx: Temporarily disable verbose variable access. * main.cxx: Support more arguments, build/run passes. Revamp temporary file generation and partial-pass output generation. * tapsets.cxx, translate.cxx: Emit just enough extra punctuation and fluff to make generated probe pass -Werror. * buildrun.cxx, buildrun.h: New files for passes 4/5. Partial support for build pass, nothing on probe execution yet. * testsuite/transok/*.stp: Force just -p3, now that -p4/5 exist. * Makefile.am, Makefile.in: Corresponding changes. --- elaborate.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'elaborate.cxx') diff --git a/elaborate.cxx b/elaborate.cxx index b6a64164..890d6f4a 100644 --- a/elaborate.cxx +++ b/elaborate.cxx @@ -174,18 +174,18 @@ match_node::find_builder(vector const & components, // an entry in the sub table, and its value matches the rest // of the probe_point. match_key k(*components[pos]); - if (verbose) + if (0) // session.verbose clog << "searching for component " << k.str() << endl; map::const_iterator i = sub.find(k); if (i == sub.end()) { - if (verbose) + if (0) // session.verbose clog << "no match found" << endl; return NULL; } else { - if (verbose) + if (0) // session.verbose clog << "matched " << k.str() << endl; derived_probe_builder * builder = NULL; if (k.have_parameter) -- cgit