diff options
Diffstat (limited to 'contrib/gcc/hooks.c')
-rw-r--r-- | contrib/gcc/hooks.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/gcc/hooks.c b/contrib/gcc/hooks.c index 3fd876a..2f71873 100644 --- a/contrib/gcc/hooks.c +++ b/contrib/gcc/hooks.c @@ -38,3 +38,11 @@ hook_void_bool_false () { return false; } + +/* Generic hook that takes (tree) and returns false. */ +bool +hook_tree_bool_false (a) + tree a ATTRIBUTE_UNUSED; +{ + return false; +} |