From 1b07c728305a32a8d1fa1bb5da9d428e34dddf4e Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 25 Apr 2006 17:40:53 +0000 Subject: 2006-04-25 Frank Ch. Eigler PR 2427. * staptree.cxx (varuse_collecting_visitor::visit_embeddedcode): Support /* pure */ declaration. Stop using __tvar_ naming hack. (v_c_u::visit_print_format): Mark sprint and sprintf as side-effect-free. (deep_copy_visitor::visit_print_format): Propagate raw_components. * stap.1.in: Document declaration. * elaborate.cxx (semantic_pass_opt2): Verbose message tweak. (dead_stmtexpr_remover): Extend for more aggressive optimization. * tapsets.cxx (dwarf,mark_var_expanding_copy_visotor): Add /* pure */ declaration to rvalue expansions. * tapset/*.stp: Added /* pure */ declarations to many functions. * testsuite/parseok/unparsers.stp: Propagate guru mode flag. * testsuite/buildok/twentyfour.stp: New test. --- testsuite/parseok/unparser.stp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'testsuite/parseok/unparser.stp') diff --git a/testsuite/parseok/unparser.stp b/testsuite/parseok/unparser.stp index 710c4636..b5deb146 100755 --- a/testsuite/parseok/unparser.stp +++ b/testsuite/parseok/unparser.stp @@ -14,8 +14,12 @@ do do if head -1 $file | grep -q stap then - echo $file - ./stap -p1 $file | ./stap -p1 - > /dev/null + if head -1 $file | fgrep -q -- g # guru mode + then guru=-g + else guru= + fi + echo $file $guru + ./stap $guru -p1 $file | ./stap $guru -p1 - > /dev/null fi done done -- cgit