diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-06 12:35:56 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-06 12:35:56 +0000 |
commit | 60b8c5b34ab84501de6a513517a9e78e3e2c4d00 (patch) | |
tree | 2e1f352052c069dc89b540d510fb95d6fac245ed /gcc/timevar.h | |
parent | 3b2e396d1023315f275d04017792c60e5c5ff4cd (diff) | |
download | gcc-60b8c5b34ab84501de6a513517a9e78e3e2c4d00.tar.gz |
* sbitmap.c: Convert prototypes to ISO C90.
* sbitmap.h: Likewise.
* scan-decls.c: Likewise.
* scan.c: Likewise.
* sched-deps.c: Likewise.
* sched-ebb.c: Likewise.
* sched-int.h: Likewise.
* sched-rgn.c: Likewise.
* sched-vis.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* sreal.c: Likewise.
* sreal.h: Likewise.
* ssa-ccp.c: Likewise.
* ssa-dce.c: Likewise.
* ssa.c: Likewise.
* ssa.h: Likewise.
* stack.h: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* stringpool.c: Likewise.
* target.h: Likewise.
* timevar.c: Likewise.
* timevar.h: Likewise.
* tlink.c: Likewise.
* tracer.c: Likewise.
* tree-inline.c: Likewise.
* tree-inline.h: Likewise.
* tree.c: Likewise.
* tree.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69002 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/timevar.h')
-rw-r--r-- | gcc/timevar.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/timevar.h b/gcc/timevar.h index 5de57ed6e9d..6f40ec0abd9 100644 --- a/gcc/timevar.h +++ b/gcc/timevar.h @@ -79,15 +79,15 @@ timevar_id_t; /* Execute the sequence: timevar_pop (TV), return (E); */ #define POP_TIMEVAR_AND_RETURN(TV, E) return (timevar_pop (TV), (E)) -extern void timevar_init PARAMS ((void)); -extern void timevar_push PARAMS ((timevar_id_t)); -extern void timevar_pop PARAMS ((timevar_id_t)); -extern void timevar_start PARAMS ((timevar_id_t)); -extern void timevar_stop PARAMS ((timevar_id_t)); -extern void timevar_get PARAMS ((timevar_id_t, struct timevar_time_def *)); -extern void timevar_print PARAMS ((FILE *)); +extern void timevar_init (void); +extern void timevar_push (timevar_id_t); +extern void timevar_pop (timevar_id_t); +extern void timevar_start (timevar_id_t); +extern void timevar_stop (timevar_id_t); +extern void timevar_get (timevar_id_t, struct timevar_time_def *); +extern void timevar_print (FILE *); /* Provided for backward compatibility. */ -extern void print_time PARAMS ((const char *, long)); +extern void print_time (const char *, long); #endif /* ! GCC_TIMEVAR_H */ |