diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-12 11:29:18 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-12 11:29:18 +0000 |
commit | eeba438a000d19a2ef5cbb85646ac1a21dd655ed (patch) | |
tree | 7178a940ba7ea592bc3891d09051076007d7a9fa /gcc/cgraph.h | |
parent | c50db3a3a171b88795fce000948beddfb722a624 (diff) | |
download | gcc-eeba438a000d19a2ef5cbb85646ac1a21dd655ed.tar.gz |
* fp-test.c (main): Use ISO C90 prototype.
* version.c: Remove unneded include of ansidecl.h.
* cgraph.h: Convert prototypes to ISO C90.
* cgraph.c: Likewise.
* fix-header.c: Likewise.
* ra.h: Likewise.
* protoize.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69265 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 0a8a2d0d507..2fa171f3173 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -153,17 +153,17 @@ extern GTY(()) struct cgraph_varpool_node *cgraph_varpool_nodes_queue; /* In cgraph.c */ -void dump_cgraph PARAMS ((FILE *)); -void cgraph_remove_call PARAMS ((tree, tree)); -void cgraph_remove_node PARAMS ((struct cgraph_node *)); -struct cgraph_edge *cgraph_record_call PARAMS ((tree, tree)); -struct cgraph_node *cgraph_node PARAMS ((tree decl)); -struct cgraph_node *cgraph_node_for_identifier PARAMS ((tree id)); -bool cgraph_calls_p PARAMS ((tree, tree)); -struct cgraph_local_info *cgraph_local_info PARAMS ((tree)); -struct cgraph_global_info *cgraph_global_info PARAMS ((tree)); -struct cgraph_rtl_info *cgraph_rtl_info PARAMS ((tree)); -const char * cgraph_node_name PARAMS ((struct cgraph_node *)); +void dump_cgraph (FILE *); +void cgraph_remove_call (tree, tree); +void cgraph_remove_node (struct cgraph_node *); +struct cgraph_edge *cgraph_record_call (tree, tree); +struct cgraph_node *cgraph_node (tree decl); +struct cgraph_node *cgraph_node_for_identifier (tree id); +bool cgraph_calls_p (tree, tree); +struct cgraph_local_info *cgraph_local_info (tree); +struct cgraph_global_info *cgraph_global_info (tree); +struct cgraph_rtl_info *cgraph_rtl_info (tree); +const char * cgraph_node_name (struct cgraph_node *); struct cgraph_varpool_node *cgraph_varpool_node (tree decl); struct cgraph_varpool_node *cgraph_varpool_node_for_identifier (tree id); @@ -172,11 +172,11 @@ void cgraph_varpool_finalize_decl (tree); bool cgraph_varpool_assemble_pending_decls (void); /* In cgraphunit.c */ -void cgraph_finalize_function PARAMS ((tree, tree)); -void cgraph_finalize_compilation_unit PARAMS ((void)); -void cgraph_create_edges PARAMS ((tree, tree)); -void cgraph_optimize PARAMS ((void)); -void cgraph_mark_needed_node PARAMS ((struct cgraph_node *, int)); -bool cgraph_inline_p PARAMS ((tree, tree)); +void cgraph_finalize_function (tree, tree); +void cgraph_finalize_compilation_unit (void); +void cgraph_create_edges (tree, tree); +void cgraph_optimize (void); +void cgraph_mark_needed_node (struct cgraph_node *, int); +bool cgraph_inline_p (tree, tree); #endif /* GCC_CGRAPH_H */ |