* expr.c (expand_expr <RDIV_EXPR>): Correct recursive call args.
authorAlan Modra <amodra@bigpond.net.au>
Sat, 11 Jan 2003 22:43:12 +0000 (22:43 +0000)
committerAlan Modra <amodra@gcc.gnu.org>
Sat, 11 Jan 2003 22:43:12 +0000 (09:13 +1030)
From-SVN: r61215

gcc/ChangeLog
gcc/expr.c

index 89b5017932de3055daa510ea9143c26c3196fe46..1facc1c8b481cad79da0b1754e5a200f4972d284 100644 (file)
@@ -1,3 +1,7 @@
+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.
index f4ea7c9c293592760bd375d220f3fa7db80d4eed..b1684b6df1bb8893007b13674a5d94d553e71a13 100644 (file)
@@ -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;