diff options
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r-- | gcc/langhooks.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h index 0d86478fc64..195446c702c 100644 --- a/gcc/langhooks.h +++ b/gcc/langhooks.h @@ -53,9 +53,10 @@ struct lang_hooks_for_tree_inlining struct lang_hooks_for_callgraph { - /* Function passed as argument is needed and will be compiled. - Lower the representation so the calls are explicit. */ - void (*lower_function) (tree); + /* The node passed is a language-specific tree node. If its contents + are relevant to use of other declarations, mark them. */ + tree (*analyze_expr) (tree *, int *, tree); + /* Produce RTL for function passed as argument. */ void (*expand_function) (tree); }; |