diff options
Diffstat (limited to 'contrib/gcc/hooks.c')
-rw-r--r-- | contrib/gcc/hooks.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/gcc/hooks.c b/contrib/gcc/hooks.c index a8cd665..06a5732 100644 --- a/contrib/gcc/hooks.c +++ b/contrib/gcc/hooks.c @@ -227,3 +227,10 @@ hook_bool_voidp_size_t_false (void * a ATTRIBUTE_UNUSED, { return false; } + +/* Generic hook that takes a tree and returns a NULL string. */ +const char * +hook_constcharptr_tree_null (tree t ATTRIBUTE_UNUSED) +{ + return NULL; +} |