PR target/65196
* config/avr/avr.c (avr_adjust_insn_length): Call recog_memoized
only with NONDEBUG_INSN_P.
From-SVN: r220964
+2015-02-25 Georg-Johann Lay <avr@gjlay.de>
+
+ PR target/65196
+ * config/avr/avr.c (avr_adjust_insn_length): Call recog_memoized
+ only with NONDEBUG_INSN_P.
+
2015-02-25 Georg-Johann Lay <avr@gjlay.de>
Use variadic macros with avr-log.c.
It is easier to state this in an insn attribute "adjust_len" than
to clutter up code here... */
- if (JUMP_TABLE_DATA_P (insn) || recog_memoized (insn) == -1)
+ if (!NONDEBUG_INSN_P (insn)
+ || -1 == recog_memoized (insn))
{
return len;
}