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. --- staptree.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'staptree.h') diff --git a/staptree.h b/staptree.h index 8d55f053..858c93a0 100644 --- a/staptree.h +++ b/staptree.h @@ -14,7 +14,6 @@ #include #include -extern bool verbose; struct token; // parse.h struct semantic_error: public std::runtime_error @@ -377,7 +376,6 @@ struct probe_point component (); }; std::vector components; - // XXX: probe aliases const token* tok; // points to first component's functor void print (std::ostream& o); probe_point (); @@ -408,7 +406,7 @@ struct probe_alias }; -// An derived visitor instance is used to visit the entire +// A derived visitor instance is used to visit the entire // statement/expression tree. struct visitor { -- cgit