diff options
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 65b347e3fea..78871a47858 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -256,3 +256,25 @@ hook_constcharptr_rtx_null (rtx r ATTRIBUTE_UNUSED) { return NULL; } + +const char * +hook_constcharptr_tree_tree_null (tree t0 ATTRIBUTE_UNUSED, + tree t1 ATTRIBUTE_UNUSED) +{ + return NULL; +} + +const char * +hook_constcharptr_int_tree_null (int i ATTRIBUTE_UNUSED, + tree t0 ATTRIBUTE_UNUSED) +{ + return NULL; +} + +const char * +hook_constcharptr_int_tree_tree_null (int i ATTRIBUTE_UNUSED, + tree t0 ATTRIBUTE_UNUSED, + tree t1 ATTRIBUTE_UNUSED) +{ + return NULL; +} |