Commit 147d77b6 by Kazu Hirata Committed by Kazu Hirata

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
parent 0fca95f5
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.
......
......@@ -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)++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment