diff options
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r-- | gcc/langhooks.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 4c4d7d6f120..4bbcd5e148f 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -56,6 +56,15 @@ lhd_return_tree (t) return t; } +/* Do nothing (return NULL_TREE). */ + +tree +lhd_return_null_tree (t) + tree t ATTRIBUTE_UNUSED; +{ + return NULL_TREE; +} + /* Do nothing; the default hook to decode an option. */ int |