diff options
author | Diego Novillo <dnovillo@google.com> | 2007-11-02 07:12:30 -0400 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2007-11-02 07:12:30 -0400 |
commit | c4e622b658b4cdf6cf75c783aade44f53ce0b4b6 (patch) | |
tree | c14fee97147f36fd4337182298671d592eaed5cb /gcc/langhooks-def.h | |
parent | ef3b7b176100495d541b40439b1f3b9e672d071d (diff) | |
download | gcc-c4e622b658b4cdf6cf75c783aade44f53ce0b4b6.tar.gz |
langhooks.h (struct lang_hooks_for_callgraph): Remove third argument from function pointer ANALYZE_EXPR.
* 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.
From-SVN: r129845
Diffstat (limited to 'gcc/langhooks-def.h')
-rw-r--r-- | gcc/langhooks-def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/langhooks-def.h b/gcc/langhooks-def.h index e0bfb67a305..f55292cd979 100644 --- a/gcc/langhooks-def.h +++ b/gcc/langhooks-def.h @@ -69,7 +69,7 @@ extern tree lhd_builtin_function (tree decl); /* Declarations of default tree inlining hooks. */ extern void lhd_initialize_diagnostics (struct diagnostic_context *); -extern tree lhd_callgraph_analyze_expr (tree *, int *, tree); +extern tree lhd_callgraph_analyze_expr (tree *, int *); /* Declarations for tree gimplification hooks. */ |