Commit 8e37cba8 by Alan Modra Committed by Alan Modra

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

From-SVN: r61215
parent 04f08c8e
2003-01-12 Alan Modra <amodra@bigpond.net.au>
* expr.c (expand_expr <RDIV_EXPR>): Correct recursive call args.
2003-01-11 Richard Earnshaw (rearnsha@arm.com)
* arm-protos.h (struct cpp_reader): Add declaration.
......
/* 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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment