From: Alan Modra Date: Sat, 11 Jan 2003 22:43:12 +0000 (+0000) Subject: * expr.c (expand_expr ): Correct recursive call args. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8e37cba890b62aa56f48cfbbca16e16b748355d6;p=gcc.git * expr.c (expand_expr ): Correct recursive call args. From-SVN: r61215 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 89b5017932d..1facc1c8b48 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-11 Richard Earnshaw (rearnsha@arm.com) * arm-protos.h (struct cpp_reader): Add declaration. diff --git a/gcc/expr.c b/gcc/expr.c index f4ea7c9c293..b1684b6df1b 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. @@ -8216,7 +8216,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;