diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-02 11:12:30 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-02 11:12:30 +0000 |
commit | e83c4efa64cbd5d92edd214404231cb561e59213 (patch) | |
tree | c14fee97147f36fd4337182298671d592eaed5cb /gcc/langhooks.h | |
parent | 864f22674a47236b467dd7edb91d0e7647aef80b (diff) | |
download | gcc-e83c4efa64cbd5d92edd214404231cb561e59213.tar.gz |
* 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: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129845 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r-- | gcc/langhooks.h | 4 |
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); }; |