From: Nick Clifton Date: Wed, 5 Jul 2000 21:40:11 +0000 (+0000) Subject: Change minimum loop size limit to 0x10 (103792) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0dbdd75378cfd66b5e37a152dbd724c2e1f6969b;p=binutils-gdb.git Change minimum loop size limit to 0x10 (103792) --- diff --git a/sim/d30v/ChangeLog b/sim/d30v/ChangeLog index 1845a45eda1..6f65b241476 100644 --- a/sim/d30v/ChangeLog +++ b/sim/d30v/ChangeLog @@ -1,3 +1,7 @@ +2000-07-05 Nick Clifton + + * d30v-insns: Change minimum loop size limit to 0x10. + Tue May 23 21:39:23 2000 Andrew Cagney * configure: Regenerated to track ../common/aclocal.m4 changes. diff --git a/sim/d30v/d30v-insns b/sim/d30v/d30v-insns index 47f837cdebb..7b7c3c88deb 100644 --- a/sim/d30v/d30v-insns +++ b/sim/d30v/d30v-insns @@ -1621,7 +1621,7 @@ void::function::do_repeat:unsigned32 count, address_word pcaddr sim_engine_abort (SD, CPU, cia, "REPEAT with ra=0 and REPEATI with imm = 0 is forbidden."); if (count > 1) PSW_SET_QUEUE (PSW_RP, 1); - if (rpt_e < rpt_s + 0x18) + if (rpt_e < rpt_s + 0x10) sim_io_eprintf (sd, "warning: 0x%lx: REPEAT or REPEATI loop is too small\n", (long) cia); WRITE32_QUEUE (&RPT_C, count - 1); WRITE32_QUEUE (&RPT_S, rpt_s);