aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2014-09-05 01:14:41 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2014-09-05 01:14:41 +0000
commite5b51ca02b275b9dbc2094499750bfb16a6b0e18 (patch)
tree062dd0a803a1eeac1b648dbbc9494be042ef1151 /gcc/rtl.h
parent6a263466d2b0cd1490b4d20ceea8765417a9e2a8 (diff)
downloadgcc-e5b51ca02b275b9dbc2094499750bfb16a6b0e18.zip
gcc-e5b51ca02b275b9dbc2094499750bfb16a6b0e18.tar.gz
gcc-e5b51ca02b275b9dbc2094499750bfb16a6b0e18.tar.bz2
fixup_args_size_notes takes a pair of rtx_insn
gcc/ 2014-09-05 David Malcolm <dmalcolm@redhat.com> * emit-rtl.c (try_split): Update NULL_RTX to NULL in call to fixup_args_size_notes. * expr.c (fixup_args_size_notes): Strengthen first two params from rtx to rtx_insn *, eliminating a checked cast. * rtl.h (fixup_args_size_notes): Strengthen first two params from rtx to rtx_insn *. From-SVN: r214930
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 70af1cf..2341976 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -3363,7 +3363,7 @@ extern void emit_jump (rtx);
extern rtx move_by_pieces (rtx, rtx, unsigned HOST_WIDE_INT,
unsigned int, int);
extern HOST_WIDE_INT find_args_size_adjust (rtx);
-extern int fixup_args_size_notes (rtx, rtx, int);
+extern int fixup_args_size_notes (rtx_insn *, rtx_insn *, int);
/* In cfgrtl.c */
extern void print_rtl_with_bb (FILE *, const rtx_insn *, int);