diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/loop-doloop.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 634ab90..3aa0018 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 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 ... (fold_abs_const): ... here. diff --git a/gcc/loop-doloop.c b/gcc/loop-doloop.c index b75b9dc..0396957 100644 --- a/gcc/loop-doloop.c +++ b/gcc/loop-doloop.c @@ -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)++; |