diff options
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 18b17dc..4c57a16 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -266,7 +266,15 @@ hook_constcharptr_tree_null (tree t ATTRIBUTE_UNUSED) } tree -hook_tree_tree_tree_bool_null (tree t0 ATTRIBUTE_UNUSED, tree t1 ATTRIBUTE_UNUSED, +hook_tree_tree_bool_null (tree t0 ATTRIBUTE_UNUSED, + bool ignore ATTRIBUTE_UNUSED) +{ + return NULL; +} + +tree +hook_tree_tree_tree_bool_null (tree t0 ATTRIBUTE_UNUSED, + tree t1 ATTRIBUTE_UNUSED, bool ignore ATTRIBUTE_UNUSED) { return NULL; |