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:
parent
0fca95f56f
commit
147d77b682
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)++;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue