loop-doloop.c (add_test): Replace GEN_INT (0) with const0_rtx.
authorKazu Hirata <kazu@cs.umass.edu>
Sat, 20 Mar 2004 02:31:57 +0000 (02:31 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sat, 20 Mar 2004 02:31:57 +0000 (02:31 +0000)
* loop-doloop.c (add_test): Replace GEN_INT (0) with
const0_rtx.

From-SVN: r79724

gcc/ChangeLog
gcc/loop-doloop.c

index 634ab90055177e59cc15cf7bcd54230d20426fda..3aa00184e4cf575dd6c02d0c9c1276320ac00790 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-19  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * loop-doloop.c (add_test): Replace GEN_INT (0) with
+       const0_rtx.
+
 2004-03-19  Kazu Hirata  <kazu@cs.umass.edu>
 
        * fold-const.c (fold) <ABS_EXPR>: Move the handling of constants
index b75b9dc03a6102759c5d83a04ae0f63826454452..0396957c0f1d118975fc7bc70160f9c4792bf1cf 100644 (file)
@@ -237,7 +237,7 @@ add_test (rtx cond, basic_block bb, basic_block dest)
   /* The jump is supposed to handle an unlikely special case.  */
   REG_NOTES (jump)
          = gen_rtx_EXPR_LIST (REG_BR_PROB,
-                              GEN_INT (0), REG_NOTES (jump));
+                              const0_rtx, REG_NOTES (jump));
 
   LABEL_NUSES (label)++;