From 79a490a95b8a5c194a479dcccae76d9f0393309b Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sun, 8 Jun 2003 16:21:54 +0200 Subject: predict.h: Convert to ISO C90 prototypes. * predict.h: Convert to ISO C90 prototypes. * predict.c: Likewise. * tree-dump.h: Likewise. * tree-dump.c: Likewise. * diagnostic.h: Likewise. * diagnostic.c: Likewise. * combine.c: Likewise. * rtl.h: Convert prototypes of combine.c to ISO C90. From-SVN: r67626 --- gcc/predict.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'gcc/predict.h') diff --git a/gcc/predict.h b/gcc/predict.h index a936b56..6ac7d7f 100644 --- a/gcc/predict.h +++ b/gcc/predict.h @@ -1,6 +1,6 @@ /* This file contains the definitions and documentation for the builtins used in the GNU compiler. - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001, 2003 Free Software Foundation, Inc. This file is part of GCC. @@ -37,13 +37,11 @@ enum prediction /* Flags for NOTE_PREDICTION */ #define IS_TAKEN 1 /* Predict edges to the block as taken. */ -extern void predict_insn_def PARAMS ((rtx, enum br_predictor, - enum prediction)); -extern void predict_insn PARAMS ((rtx, enum br_predictor, int)); +extern void predict_insn_def (rtx, enum br_predictor, enum prediction); +extern void predict_insn (rtx, enum br_predictor, int); /* Avoid unneeded dependency on basic_block.h */ #ifdef BASIC_BLOCK -extern void predict_edge PARAMS ((edge, enum br_predictor, int)); -extern void predict_edge_def PARAMS ((edge, enum br_predictor, - enum prediction)); +extern void predict_edge (edge, enum br_predictor, int); +extern void predict_edge_def (edge, enum br_predictor, enum prediction); #endif -- cgit v1.1