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