Commit f27a3d37 by Bernd Schmidt Committed by Bernd Schmidt

hw-doloop.c (scan_loop): Compute register usage only for non-debug insns.

	* hw-doloop.c (scan_loop): Compute register usage only for non-debug
	insns.

From-SVN: r179379
parent 8d4f1548
2011-09-30 Bernd Schmidt <bernds@codesourcery.com>
* hw-doloop.c (scan_loop): Compute register usage only for non-debug
insns.
2011-09-30 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
PR target/50099
......@@ -123,7 +123,7 @@ scan_loop (hwloop_info loop)
df_ref *def_rec;
HARD_REG_SET set_this_insn;
if (!INSN_P (insn))
if (!NONDEBUG_INSN_P (insn))
continue;
if (recog_memoized (insn) < 0
......
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