loop-doloop.c (add_test): Replace GEN_INT (0) with const0_rtx.

* loop-doloop.c (add_test): Replace GEN_INT (0) with
	const0_rtx.

From-SVN: r79724
This commit is contained in:
Kazu Hirata 2004-03-20 02:31:57 +00:00 committed by Kazu Hirata
parent 0fca95f56f
commit 147d77b682
2 changed files with 6 additions and 1 deletions

View 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

View 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)++;