]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* expr.c (expand_expr <RDIV_EXPR>): Correct recursive call args.
authorAlan Modra <amodra@bigpond.net.au>
Sat, 11 Jan 2003 22:44:36 +0000 (22:44 +0000)
committerAlan Modra <amodra@gcc.gnu.org>
Sat, 11 Jan 2003 22:44:36 +0000 (09:14 +1030)
From-SVN: r61217

gcc/ChangeLog
gcc/expr.c

index b068121b5149a89c81ca0794650289aaa1b5d5d6..bd7294c3f0dc80c49c0aff8ad3ed1a97f8d91f3f 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-10  Josef Zlomek  <zlomekj@suse.cz>
 
        * jump.c (next_nonnote_insn_in_loop): New function.
index 94a28e9922be8a980fb824847986a2c40d44efac..104aae67cf92ed3993631d14c4740d926dff02a4 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.
 
@@ -7847,7 +7847,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;