From ae56fdddab1cdf3304d7de6e93315ff6452e4ad1 Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 16 Aug 2005 14:04:02 +0000 Subject: 2005-08-16 Frank Ch. Eigler * main.cxx: Don't print library parse trees if last_pass=1. --- staptree.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'staptree.cxx') diff --git a/staptree.cxx b/staptree.cxx index eb811e49..843f96b7 100644 --- a/staptree.cxx +++ b/staptree.cxx @@ -220,8 +220,8 @@ void post_crement::print (ostream& o) void ternary_expression::print (ostream& o) { - o << "(" << *cond << ") ? (" - << *truevalue << ") : (" + o << "(" << *cond << ")?(" + << *truevalue << "):(" << *falsevalue << ")"; } -- cgit