aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorTrevor Saunders <tbsaunde+gcc@tbsaunde.org>2016-11-21 06:15:26 +0000
committerTrevor Saunders <tbsaunde@gcc.gnu.org>2016-11-21 06:15:26 +0000
commit4bd09ee9d3c60db4f91248bc0f0c3d54dce2659a (patch)
treebe79eff74c29507b00632c3abe4dc6b690b532de /gcc/rtl.h
parent800dcd865a5bdae76e6e95f2d4c24791c36907f7 (diff)
downloadgcc-4bd09ee9d3c60db4f91248bc0f0c3d54dce2659a.zip
gcc-4bd09ee9d3c60db4f91248bc0f0c3d54dce2659a.tar.gz
gcc-4bd09ee9d3c60db4f91248bc0f0c3d54dce2659a.tar.bz2
make replace_label_in_insn take labels as rtx_insn *
gcc/ChangeLog: 2016-11-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> * rtl.h: Adjust prototype. * rtlanal.c (replace_label_in_insn): Change argument type to rtx_insn *. From-SVN: r242652
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 30a42fc..52e5d18 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -3039,7 +3039,7 @@ extern void copy_reg_eh_region_note_backward (rtx, rtx_insn *, rtx);
extern int inequality_comparisons_p (const_rtx);
extern rtx replace_rtx (rtx, rtx, rtx, bool = false);
extern void replace_label (rtx *, rtx, rtx, bool);
-extern void replace_label_in_insn (rtx_insn *, rtx, rtx, bool);
+extern void replace_label_in_insn (rtx_insn *, rtx_insn *, rtx_insn *, bool);
extern bool rtx_referenced_p (const_rtx, const_rtx);
extern bool tablejump_p (const rtx_insn *, rtx_insn **, rtx_jump_table_data **);
extern int computed_jump_p (const rtx_insn *);