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/cgraph.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/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 2d6d7c94c9a..baed1a6fef3 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 *); |