diff options
author | Richard Henderson <rth@cygnus.com> | 1999-09-12 05:46:08 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-09-12 05:46:08 -0700 |
commit | a995e389c4aed94fbfc35bd283ade7dd775add7c (patch) | |
tree | c2582159a30e1f83f4d7b7bcd2806fb8331123b2 /gcc/loop.c | |
parent | ddf16f18413b904c1b524e9d385aabd394fa5d7b (diff) | |
download | gcc-a995e389c4aed94fbfc35bd283ade7dd775add7c.zip gcc-a995e389c4aed94fbfc35bd283ade7dd775add7c.tar.gz gcc-a995e389c4aed94fbfc35bd283ade7dd775add7c.tar.bz2 |
Replace insn_foo with insn_data.foo.
From-SVN: r29358
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -8132,10 +8132,12 @@ check_dbra_loop (loop_end, insn_count, loop_start, loop_info) enum machine_mode mode = GET_MODE (reg); enum insn_code icode = add_optab->handlers[(int) mode].insn_code; - if (! (*insn_operand_predicate[icode][0]) (reg, mode) - || ! ((*insn_operand_predicate[icode][1]) + + if (! (*insn_data[icode].operand[0].predicate) (reg, mode) + || ! ((*insn_data[icode].operand[1].predicate) (comparison_value, mode)) - || ! (*insn_operand_predicate[icode][2]) (offset, mode)) + || ! ((*insn_data[icode].operand[2].predicate) + (offset, mode))) return 0; start_value = gen_rtx_PLUS (mode, comparison_value, offset); @@ -8151,10 +8153,10 @@ check_dbra_loop (loop_end, insn_count, loop_start, loop_info) enum machine_mode mode = GET_MODE (reg); enum insn_code icode = sub_optab->handlers[(int) mode].insn_code; - if (! (*insn_operand_predicate[icode][0]) (reg, mode) - || ! ((*insn_operand_predicate[icode][1]) + if (! (*insn_data[icode].operand[0].predicate) (reg, mode) + || ! ((*insn_data[icode].operand[1].predicate) (comparison_value, mode)) - || ! ((*insn_operand_predicate[icode][2]) + || ! ((*insn_data[icode].operand[2].predicate) (initial_value, mode))) return 0; start_value |