diff options
Diffstat (limited to 'gcc/hooks.h')
-rw-r--r-- | gcc/hooks.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/hooks.h b/gcc/hooks.h index d6bbc4c2f07..9d7e56a3589 100644 --- a/gcc/hooks.h +++ b/gcc/hooks.h @@ -44,7 +44,7 @@ extern bool hook_bool_const_tree_hwi_hwi_const_tree_true (const_tree, const_tree); extern bool hook_bool_rtx_false (rtx); extern bool hook_bool_uintp_uintp_false (unsigned int *, unsigned int *); -extern bool hook_bool_rtx_int_int_intp_false (rtx, int, int, int *); +extern bool hook_bool_rtx_int_int_intp_bool_false (rtx, int, int, int *, bool); extern bool hook_bool_constcharptr_size_t_false (const char *, size_t); extern bool hook_bool_size_t_constcharptr_int_true (size_t, const char *, int); extern bool hook_bool_tree_tree_false (tree, tree); @@ -59,6 +59,7 @@ extern void hook_void_tree_treeptr (tree, tree *); extern int hook_int_const_tree_0 (const_tree); extern int hook_int_const_tree_const_tree_1 (const_tree, const_tree); extern int hook_int_rtx_0 (rtx); +extern int hook_int_rtx_bool_0 (rtx, bool); extern int hook_int_size_t_constcharptr_int_0 (size_t, const char *, int); extern int hook_int_void_no_regs (void); |