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.c | |
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.c')
-rw-r--r-- | gcc/langhooks.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 6a9a74dc70c..c565daa2d97 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -486,8 +486,7 @@ lhd_print_error_function (diagnostic_context *context, const char *file, tree lhd_callgraph_analyze_expr (tree *tp ATTRIBUTE_UNUSED, - int *walk_subtrees ATTRIBUTE_UNUSED, - tree decl ATTRIBUTE_UNUSED) + int *walk_subtrees ATTRIBUTE_UNUSED) { return NULL; } |