Commit 97f43086 by H.J. Lu Committed by H.J. Lu

Don't search DEBUG_INSNs for removable zero extends.

2010-06-25  H.J. Lu  <hongjiu.lu@intel.com>

	PR rtl-optimization/44326
	* implicit-zee.c (find_removable_zero_extends): Replace
	INSN_P with NONDEBUG_INSN_P.

From-SVN: r161389
parent 062c604f
2010-06-25 H.J. Lu <hongjiu.lu@intel.com>
PR rtl-optimization/44326
* implicit-zee.c (find_removable_zero_extends): Replace
INSN_P with NONDEBUG_INSN_P.
2010-06-25 Martin Jambor <mjambor@suse.cz>
* ipa-prop.h (struct ipa_param_descriptor): Removed the modified flag.
......
......@@ -858,7 +858,7 @@ find_removable_zero_extends (void)
{
FOR_BB_INSNS (curr_block, curr_insn)
{
if (!INSN_P (curr_insn))
if (!NONDEBUG_INSN_P (curr_insn))
continue;
type = for_each_rtx (&PATTERN (curr_insn),
......
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