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]

[fixed-ponit] Small patch


Hi,

  This patch fixed a build failure after I merged from the mainline to 
the fixed-point branch. Thanks!

Regards,
Chao-ying

2007-01-17  Chao-ying Fu  <fu@mips.com>

        * fold-const.c (fold_convert_const_int_from_fixed): Remove the last
        parameter.

Index: fold-const.c
===================================================================
--- fold-const.c        (revision 120875)
+++ fold-const.c        (working copy)
@@ -2068,8 +2068,7 @@
                             (temp.high < 0
                              && (TYPE_UNSIGNED (type)
                                  < TYPE_UNSIGNED (TREE_TYPE (arg1))))
-                            | TREE_OVERFLOW (arg1),
-                            TREE_CONSTANT_OVERFLOW (arg1));
+                            | TREE_OVERFLOW (arg1));

   return t;
 }


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