Commit 174b84e5 by Andreas Tobler Committed by Andreas Tobler

cse.c: (cse_cc_succs) Fix comparison warning.

2004-01-24  Andreas Tobler  <a.tobler@schweiz.ch>

	* cse.c: (cse_cc_succs) Fix comparison warning.

From-SVN: r76487
parent 16537909
2004-01-24 Andreas Tobler <a.tobler@schweiz.ch>
* cse.c: (cse_cc_succs) Fix comparison warning.
2004-01-24 Kazu Hirata <kazu@cs.umass.edu> 2004-01-24 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md: Remove extraneous USE in expanders. * config/h8300/h8300.md: Remove extraneous USE in expanders.
......
...@@ -7806,7 +7806,7 @@ cse_cc_succs (basic_block bb, rtx cc_reg, rtx cc_src, bool can_change_mode) ...@@ -7806,7 +7806,7 @@ cse_cc_succs (basic_block bb, rtx cc_reg, rtx cc_src, bool can_change_mode)
if (found) if (found)
{ {
found_equiv = true; found_equiv = true;
if (insn_count < sizeof insns / sizeof insn[0]) if (insn_count < ARRAY_SIZE(insns))
{ {
insns[insn_count] = insn; insns[insn_count] = insn;
modes[insn_count] = set_mode; modes[insn_count] = set_mode;
......
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