diff options
Diffstat (limited to 'gcc/langhooks.c')
| -rw-r--r-- | gcc/langhooks.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 8465bd3..3054ee7 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -38,6 +38,15 @@ lhd_do_nothing () { } +/* Do nothing (return the tree node passed). */ + +tree +lhd_return_tree (t) + tree t; +{ + return t; +} + /* Do nothing; the default hook to decode an option. */ int @@ -58,6 +67,16 @@ lhd_print_tree_nothing (file, node, indent) { } +/* Called from safe_from_p. */ + +int +lhd_safe_from_p (x, exp) + rtx x; + tree exp; +{ + return 1; +} + /* Called when -dy is given on the command line. */ void |
