summaryrefslogtreecommitdiff
path: root/gcc/predict.h
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-08 14:21:54 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-08 14:21:54 +0000
commitd598ad0d48dd8005e04d75abb1b2ae94026927a8 (patch)
tree1a402c61c8f88ad5941bc58f486ce8f44d76cbda /gcc/predict.h
parent10ce2cb1a03fae78127de96020da2171744ddfce (diff)
downloadgcc-d598ad0d48dd8005e04d75abb1b2ae94026927a8.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67626 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/predict.h')
-rw-r--r--gcc/predict.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/gcc/predict.h b/gcc/predict.h
index a936b568946..6ac7d7f28b8 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