diff options
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r-- | gcc/langhooks.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 3600436..d47a993 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -100,6 +100,14 @@ lhd_return_null_tree (tree ARG_UNUSED (t)) return NULL_TREE; } +/* Do nothing (return NULL_TREE). */ + +tree +lhd_return_null_const_tree (const_tree ARG_UNUSED (t)) +{ + return NULL_TREE; +} + /* The default post options hook. */ bool |