]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Tweak to dse.c
authorDavid Malcolm <dmalcolm@redhat.com>
Tue, 26 Aug 2014 20:43:14 +0000 (20:43 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Tue, 26 Aug 2014 20:43:14 +0000 (20:43 +0000)
gcc/
2014-08-26  David Malcolm  <dmalcolm@redhat.com>

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

From-SVN: r214549

gcc/ChangeLog
gcc/dse.c

index ccbe5fc25f7176aa5cae0cdb6b9e8ef0d0626c7f..537858f95b789c81ef7c595eaf64c0ad75dd9346 100644 (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
index 4f07b3c6d96dc0a5dc56c79fcc84c8c0b523f401..7b4260a3eec0cf7c09c3b75bc684d97bada57a9a 100644 (file)
--- a/gcc/dse.c
+++ b/gcc/dse.c
@@ -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 "