diff options
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 74a3aff..9c49379 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -313,6 +313,12 @@ hook_bool_const_tree_false (const_tree) } bool +hook_bool_const_tree_const_tree_true (const_tree, const_tree) +{ + return true; +} + +bool hook_bool_tree_true (tree) { return true; |