From bf9bd203c3acd94614b93ba0187148a1deda043c Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 13 Sep 2005 00:45:24 +0000 Subject: 2005-09-12 Frank Ch. Eigler PR 1335 * translate.cxx (c_tmpcounter::visit_functioncall): Correct recursion sequence. * testsuite/buildok/nineteen.stp: New test case. --- translate.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'translate.cxx') diff --git a/translate.cxx b/translate.cxx index 6b00cd9e..9f057043 100644 --- a/translate.cxx +++ b/translate.cxx @@ -2259,10 +2259,8 @@ c_tmpcounter::visit_functioncall (functioncall *e) { tmpvar t = parent->gensym (r->formal_args[i]->type); t.declare (*parent); + e->args[i]->visit (this); } - - for (unsigned i=0; iargs.size(); i++) - e->args[i]->visit (this); } -- cgit