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 917bb6e..3995786 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -429,6 +429,13 @@ hook_tree_const_tree_null (const_tree) return NULL; } +/* Generic hook that takes no arguments and returns a NULL_TREE. */ +tree +hook_tree_void_null (void) +{ + return NULL; +} + /* Generic hook that takes a rtx_insn * and an int and returns a bool. */ bool |