aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2014-08-21 00:59:41 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2014-08-21 00:59:41 +0000
commit62fc98cc67f69de81efc2525b8cc921eaf913cd7 (patch)
tree61d54da74ca95a60171f16be69da0efbaedd7a81 /gcc/rtl.h
parentfbecdc83824c4158ba7047226266719fb51bc412 (diff)
downloadgcc-62fc98cc67f69de81efc2525b8cc921eaf913cd7.zip
gcc-62fc98cc67f69de81efc2525b8cc921eaf913cd7.tar.gz
gcc-62fc98cc67f69de81efc2525b8cc921eaf913cd7.tar.bz2
find_first_parameter_load returns an rtx_insn
2014-08-21 David Malcolm <dmalcolm@redhat.com> * rtl.h (find_first_parameter_load): Strengthen return type from rtx to rtx_insn *. * rtlanal.c (find_first_parameter_load): Strengthen return type from rtx to rtx_insn *. Add checked cast for now, to postpone strengthening the params. From-SVN: r214252
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 b6a21b6..99d2d64 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -2641,7 +2641,7 @@ extern int auto_inc_p (const_rtx);
extern int in_expr_list_p (const_rtx, const_rtx);
extern void remove_node_from_expr_list (const_rtx, rtx *);
extern int loc_mentioned_in_p (rtx *, const_rtx);
-extern rtx find_first_parameter_load (rtx, rtx);
+extern rtx_insn *find_first_parameter_load (rtx, rtx);
extern bool keep_with_call_p (const_rtx);
extern bool label_is_jump_target_p (const_rtx, const_rtx);
extern int insn_rtx_cost (rtx, bool);