Commit eb92d49a by David Malcolm Committed by David Malcolm

Tweak to dse.c

gcc/
2014-08-26  David Malcolm  <dmalcolm@redhat.com>

	* dse.c (dse_step6): Strengthen local "rinsn" from rtx to
	rtx_insn *.

From-SVN: r214549
parent b2908ba6
2014-08-26 David Malcolm <dmalcolm@redhat.com>
* dse.c (dse_step6): Strengthen local "rinsn" from rtx to
rtx_insn *.
2014-08-26 David Malcolm <dmalcolm@redhat.com>
* df.h (df_dump_insn_problem_function): Strengthen first param of
this callback from const_rtx to const rtx_insn *.
(struct df_insn_info): Strengthen field "insn" from rtx to
......
......@@ -3622,7 +3622,7 @@ dse_step6 (void)
&& s_info->redundant_reason->insn
&& INSN_P (s_info->redundant_reason->insn))
{
rtx rinsn = s_info->redundant_reason->insn;
rtx_insn *rinsn = s_info->redundant_reason->insn;
if (dump_file && (dump_flags & TDF_DETAILS))
fprintf (dump_file, "Locally deleting insn %d "
"because insn %d stores the "
......
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