diff options
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index ef90ce13..cb6efd4 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -125,11 +125,21 @@ hook_uint_uint_constcharptrptr_0 (unsigned int a ATTRIBUTE_UNUSED, } void +hook_void_int (int b ATTRIBUTE_UNUSED) +{ +} + +void hook_void_tree (tree a ATTRIBUTE_UNUSED) { } void +hook_void_charptr (char *a ATTRIBUTE_UNUSED) +{ +} + +void hook_void_tree_treeptr (tree a ATTRIBUTE_UNUSED, tree *b ATTRIBUTE_UNUSED) { } |