This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

expand_expr RDIV_EXPR


Committing as obvious. (with updated copyright date)

	* expr.c (expand_expr <RDIV_EXPR>): Correct recursive call args.

--- gcc/expr.c~	2003-01-11 08:07:02.000000000 +1030
+++ gcc/expr.c	2003-01-11 09:05:32.000000000 +1030
@@ -8215,9 +8215,9 @@ expand_expr (exp, target, tmode, modifie
         return expand_expr (build (MULT_EXPR, type, TREE_OPERAND (exp, 0),
 				   build (RDIV_EXPR, type,
 					  build_real (type, dconst1),
 					  TREE_OPERAND (exp, 1))),
-			    target, tmode, unsignedp);
+			    target, tmode, modifier);
       this_optab = sdiv_optab;
       goto binop;
 
     case TRUNC_MOD_EXPR:

-- 
Alan Modra
IBM OzLabs - Linux Technology Centre


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]