aboutsummaryrefslogtreecommitdiff
path: root/gcc/langhooks.h
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@google.com>2007-11-02 11:12:30 +0000
committerDiego Novillo <dnovillo@google.com>2007-11-02 11:12:30 +0000
commit3fae389500e088219dc58d89127f0c18e5ee3636 (patch)
treec14fee97147f36fd4337182298671d592eaed5cb /gcc/langhooks.h
parentdbd46790846b460e3544d27e17a35d7ea73a9ebe (diff)
* langhooks.h (struct lang_hooks_for_callgraph): Remove third
argument from function pointer ANALYZE_EXPR. Update all users. * cgraph.c (debug_cgraph_node): New. (debug_cgraph): New. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@129845 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r--gcc/langhooks.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h
index 0efb13956d3..23ecb90bcee 100644
--- a/gcc/langhooks.h
+++ b/gcc/langhooks.h
@@ -43,9 +43,9 @@ struct lang_hooks_for_callgraph
{
/* 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);
+ tree (*analyze_expr) (tree *, int *);
- /* Emmit thunks associated to function. */
+ /* Emit thunks associated to function. */
void (*emit_associated_thunks) (tree);
};