aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2014-08-26 19:25:31 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2014-08-26 19:25:31 +0000
commitdb76cf1e63450264df9a4b0e7e9ccdc85ce70afa (patch)
treebbadb8e5e956b309621a566d33989a6d96041d13 /gcc/rtl.h
parent0926539cb17fcfc1e35ff9c0026fcce6ee9cbc9a (diff)
downloadgcc-db76cf1e63450264df9a4b0e7e9ccdc85ce70afa.zip
gcc-db76cf1e63450264df9a4b0e7e9ccdc85ce70afa.tar.gz
gcc-db76cf1e63450264df9a4b0e7e9ccdc85ce70afa.tar.bz2
get_last_insn_anywhere returns an rtx_insn
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
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index f5b2ea1..588fe3b 100644
--- 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);