]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
stack-ptr-mod.c: Use rtx_insn
authorDavid Malcolm <dmalcolm@redhat.com>
Fri, 22 Aug 2014 21:44:32 +0000 (21:44 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Fri, 22 Aug 2014 21:44:32 +0000 (21:44 +0000)
gcc/
2014-08-22  David Malcolm  <dmalcolm@redhat.com>

* stack-ptr-mod.c (pass_stack_ptr_mod::execute): Strengthen local
"insn" from rtx to rtx_insn *.

From-SVN: r214382

gcc/ChangeLog
gcc/stack-ptr-mod.c

index ae34bd9b5e9e2799665783aa064940c0809cf083..cb930ce284a2687ec4cc39ae8bf1b4b17a253ca6 100644 (file)
@@ -1,3 +1,8 @@
+2014-08-22  David Malcolm  <dmalcolm@redhat.com>
+
+       * stack-ptr-mod.c (pass_stack_ptr_mod::execute): Strengthen local
+       "insn" from rtx to rtx_insn *.
+
 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
 
        * shrink-wrap.h (requires_stack_frame_p): Strengthen param 1
index 6e0acfecdd05818a2860332495cde31bbf6ee0a1..45f0c2305401357ab9f97a4cc727ed0c153b9a6e 100644 (file)
@@ -83,7 +83,7 @@ unsigned int
 pass_stack_ptr_mod::execute (function *fun)
 {
   basic_block bb;
-  rtx insn;
+  rtx_insn *insn;
 
   /* Assume that the stack pointer is unchanging if alloca hasn't
      been used.  */