PR target/65196
* config/avr/avr.c (avr_adjust_insn_length): Call recog_memoized
only with NONDEBUG_INSN_P.
From-SVN: r220965
+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 Richard Biener <rguenther@suse.de>
Backport from mainline
for LTO produced CUs.
2015-02-16 Richard Biener <rguenther@suse.de>
-
+
PR lto/65015
* varasm.c (default_file_start): For LTO produced units
emit <artificial> as file directive.
It is easier to state this in an insn attribute "adjust_len" than
to clutter up code here... */
- if (-1 == recog_memoized (insn))
+ if (!NONDEBUG_INSN_P (insn)
+ || -1 == recog_memoized (insn))
{
return len;
}