diff options
author | Alan Modra <amodra@bigpond.net.au> | 2003-01-11 22:43:12 +0000 |
---|---|---|
committer | Alan Modra <amodra@gcc.gnu.org> | 2003-01-12 09:13:12 +1030 |
commit | 8e37cba890b62aa56f48cfbbca16e16b748355d6 (patch) | |
tree | e63af58c58ed80816417b54cd8784fc51644fc52 /gcc/expr.c | |
parent | 04f08c8ef99b138ad4e45b2c321d15650ea92e47 (diff) | |
download | gcc-8e37cba890b62aa56f48cfbbca16e16b748355d6.zip gcc-8e37cba890b62aa56f48cfbbca16e16b748355d6.tar.gz gcc-8e37cba890b62aa56f48cfbbca16e16b748355d6.tar.bz2 |
* expr.c (expand_expr <RDIV_EXPR>): Correct recursive call args.
From-SVN: r61215
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |