aboutsummaryrefslogtreecommitdiff
path: root/gcc/sched-int.h
diff options
context:
space:
mode:
authorTrevor Saunders <tbsaunde+gcc@tbsaunde.org>2015-05-09 04:17:22 +0000
committerTrevor Saunders <tbsaunde@gcc.gnu.org>2015-05-09 04:17:22 +0000
commitdf8379e7c426b8354ea58631c76b1206de8c62fd (patch)
tree58d8f246a1663ca5b5dd90b41b45044e0d856a30 /gcc/sched-int.h
parent23f57f5a358eca875ed2fafc9cc5e7d99cae08f8 (diff)
downloadgcc-df8379e7c426b8354ea58631c76b1206de8c62fd.zip
gcc-df8379e7c426b8354ea58631c76b1206de8c62fd.tar.gz
gcc-df8379e7c426b8354ea58631c76b1206de8c62fd.tar.bz2
more rtx_insn * in sched-deps.c
gcc/ChangeLog: 2015-05-08 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> * sched-deps.c: Change argument types to rtx_insn *. * sched-int.h: Adjust. From-SVN: r222954
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r--gcc/sched-int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h
index c93412e..216cd58 100644
--- a/gcc/sched-int.h
+++ b/gcc/sched-int.h
@@ -1649,8 +1649,8 @@ sd_iterator_next (sd_iterator_def *it_ptr)
extern int sd_lists_size (const_rtx, sd_list_types_def);
extern bool sd_lists_empty_p (const_rtx, sd_list_types_def);
-extern void sd_init_insn (rtx);
-extern void sd_finish_insn (rtx);
+extern void sd_init_insn (rtx_insn *);
+extern void sd_finish_insn (rtx_insn *);
extern dep_t sd_find_dep_between (rtx, rtx, bool);
extern void sd_add_dep (dep_t, bool);
extern enum DEPS_ADJUST_RESULT sd_add_or_update_dep (dep_t, bool);