diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-26 20:51:37 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-26 20:51:37 +0000 |
commit | 2405414425fb0e4ca0075bbc49644d8ca03214df (patch) | |
tree | d6963b0f465ce20472a59151e1711f58104f858f /gcc/cp/dump.c | |
parent | b59496fadbe8fb21b91d6d02370ac9fcff66d2d0 (diff) | |
download | gcc-2405414425fb0e4ca0075bbc49644d8ca03214df.tar.gz |
* call.c: PROTO -> PARAMS.
* class.c: Likewise.
* cp-tree.h: Likewise.
* cvt.c: Likewise.
* decl.c: Likewise.
* decl.h: Likewise.
* decl2.c: Likewise.
* dump.c: Likewise.
* errfn.c: Likewise.
* error.c: Likewise.
* except.c: Likewise.
* expr.c: Likewise.
* init.c: Likewise.
* input.c: Likewise.
* lex.c: Likewise.
* lex.h: Likewise.
* method.c: Likewise.
* optimize.c: Likewise.
* parse.y: Likewise.
* pt.c: Likewise.
* repo.c: Likewise.
* rtti.c: Likewise.
* search.c: Likewise.
* semantics.c: Likewise.
* spew.c: Likewise.
* tree.c: Likewise.
* typeck.c: Likewise.
* typeck2.c: Likewise.
* xref.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31632 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/dump.c')
-rw-r--r-- | gcc/cp/dump.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gcc/cp/dump.c b/gcc/cp/dump.c index 379ad831407..34444bb8a63 100644 --- a/gcc/cp/dump.c +++ b/gcc/cp/dump.c @@ -71,19 +71,19 @@ typedef struct dump_info splay_tree nodes; } *dump_info_p; -static unsigned int queue PROTO ((dump_info_p, tree, int)); -static void dump_index PROTO ((dump_info_p, unsigned int)); -static void queue_and_dump_index PROTO ((dump_info_p, const char *, tree, int)); -static void queue_and_dump_type PROTO ((dump_info_p, tree)); -static void dequeue_and_dump PROTO ((dump_info_p)); -static void dump_new_line PROTO ((dump_info_p)); -static void dump_maybe_newline PROTO ((dump_info_p)); -static void dump_int PROTO ((dump_info_p, const char *, int)); -static void dump_string PROTO ((dump_info_p, const char *)); -static void dump_string_field PROTO ((dump_info_p, const char *, const char *)); -static void dump_node PROTO ((tree, FILE *)); -static void dump_stmt PROTO ((dump_info_p, tree)); -static void dump_next_stmt PROTO ((dump_info_p, tree)); +static unsigned int queue PARAMS ((dump_info_p, tree, int)); +static void dump_index PARAMS ((dump_info_p, unsigned int)); +static void queue_and_dump_index PARAMS ((dump_info_p, const char *, tree, int)); +static void queue_and_dump_type PARAMS ((dump_info_p, tree)); +static void dequeue_and_dump PARAMS ((dump_info_p)); +static void dump_new_line PARAMS ((dump_info_p)); +static void dump_maybe_newline PARAMS ((dump_info_p)); +static void dump_int PARAMS ((dump_info_p, const char *, int)); +static void dump_string PARAMS ((dump_info_p, const char *)); +static void dump_string_field PARAMS ((dump_info_p, const char *, const char *)); +static void dump_node PARAMS ((tree, FILE *)); +static void dump_stmt PARAMS ((dump_info_p, tree)); +static void dump_next_stmt PARAMS ((dump_info_p, tree)); /* Add T to the end of the queue of nodes to dump. Returns the index assigned to T. */ |