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
This commit is contained in:
David Malcolm 2014-08-26 20:43:14 +00:00 committed by David Malcolm
parent b2908ba6db
commit eb92d49a91
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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 "