diff options
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r-- | gcc/langhooks.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index cc08e46..0bbb5e3 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -39,7 +39,7 @@ lhd_do_nothing () { } -/* Do nothing. */ +/* Do nothing (tree). */ void lhd_do_nothing_t (t) @@ -47,6 +47,14 @@ lhd_do_nothing_t (t) { } +/* Do nothing (function). */ + +void +lhd_do_nothing_f (f) + struct function *f ATTRIBUTE_UNUSED; +{ +} + /* Do nothing (return the tree node passed). */ tree |