From: Alan Modra Date: Sat, 11 Jan 2003 22:44:36 +0000 (+0000) Subject: * expr.c (expand_expr ): Correct recursive call args. X-Git-Tag: releases/gcc-3.2.2~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5203822a9f22c64243407ffcd781e6c758c12bfe;p=thirdparty%2Fgcc.git * expr.c (expand_expr ): Correct recursive call args. From-SVN: r61217 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b068121b5149..bd7294c3f0dc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-01-12 Alan Modra + + * expr.c (expand_expr ): Correct recursive call args. + 2003-01-10 Josef Zlomek * jump.c (next_nonnote_insn_in_loop): New function. diff --git a/gcc/expr.c b/gcc/expr.c index 94a28e9922be..104aae67cf92 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -1,6 +1,6 @@ /* Convert tree expression to rtl instructions, for GNU compiler. Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002 Free Software Foundation, Inc. + 2000, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of GCC. @@ -7847,7 +7847,7 @@ expand_expr (exp, target, tmode, modifier) build (RDIV_EXPR, type, build_real (type, dconst1), TREE_OPERAND (exp, 1))), - target, tmode, unsignedp); + target, tmode, modifier); this_optab = sdiv_optab; goto binop;