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/cgraph.h | |
parent | ef3b7b176100495d541b40439b1f3b9e672d071d (diff) | |
download | gcc-c4e622b658b4cdf6cf75c783aade44f53ce0b4b6.zip gcc-c4e622b658b4cdf6cf75c783aade44f53ce0b4b6.tar.gz gcc-c4e622b658b4cdf6cf75c783aade44f53ce0b4b6.tar.bz2 |
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/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 2d6d7c9..baed1a6 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -288,7 +288,9 @@ extern GTY(()) int cgraph_order; /* In cgraph.c */ void dump_cgraph (FILE *); +void debug_cgraph (void); void dump_cgraph_node (FILE *, struct cgraph_node *); +void debug_cgraph_node (struct cgraph_node *); void cgraph_insert_node_to_hashtable (struct cgraph_node *node); void cgraph_remove_edge (struct cgraph_edge *); void cgraph_remove_node (struct cgraph_node *); |