get_last_insn_anywhere returns an rtx_insn
authorDavid Malcolm <dmalcolm@redhat.com>
Tue, 26 Aug 2014 19:25:31 +0000 (19:25 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Tue, 26 Aug 2014 19:25:31 +0000 (19:25 +0000)
gcc/
2014-08-26  David Malcolm  <dmalcolm@redhat.com>

* rtl.h (get_last_insn_anywhere): Strengthen return type from rtx
to rtx_insn*.
* emit-rtl.c (get_last_insn_anywhere): Likewise.

From-SVN: r214538

gcc/ChangeLog
gcc/emit-rtl.c
gcc/rtl.h

index a754f707c3f95fd5aa92dee00b15fa2fee3e1023..ef9dd0dca7dd2ad6540f7e8f43bad82c45ecc953 100644 (file)
@@ -1,3 +1,9 @@
+2014-08-26  David Malcolm  <dmalcolm@redhat.com>
+
+       * rtl.h (get_last_insn_anywhere): Strengthen return type from rtx
+       to rtx_insn*.
+       * emit-rtl.c (get_last_insn_anywhere): Likewise.
+
 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
 
        * function.h (struct sequence_stack): Strengthen fields "first"
index fa904222fd0bd0b02dfd3f7bb0e7b0d59d1dae9b..51f799c9d2050c28c099a62634adcadba432878e 100644 (file)
@@ -3091,7 +3091,7 @@ make_safe_from (rtx x, rtx other)
 
 /* Return the last insn emitted, even if it is in a sequence now pushed.  */
 
-rtx
+rtx_insn *
 get_last_insn_anywhere (void)
 {
   struct sequence_stack *stack;
index f5b2ea1fffe8c913b106306134a448daca30d1dc..588fe3b01098f2627f03f4e7c606c418f7fd3973 100644 (file)
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -2358,7 +2358,7 @@ extern rtx convert_memory_address_addr_space (enum machine_mode, rtx,
 #define convert_memory_address(to_mode,x) \
        convert_memory_address_addr_space ((to_mode), (x), ADDR_SPACE_GENERIC)
 extern const char *get_insn_name (int);
-extern rtx get_last_insn_anywhere (void);
+extern rtx_insn *get_last_insn_anywhere (void);
 extern rtx get_first_nonnote_insn (void);
 extern rtx get_last_nonnote_insn (void);
 extern void start_sequence (void);