summaryrefslogtreecommitdiff
path: root/gcc/predict.h
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@gcc.gnu.org>2003-06-08 16:21:54 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2003-06-08 16:21:54 +0200
commit79a490a95b8a5c194a479dcccae76d9f0393309b (patch)
tree1a402c61c8f88ad5941bc58f486ce8f44d76cbda /gcc/predict.h
parentb4fac6a0c4bb7bf4e0d31999ecdf4e43804f6a81 (diff)
downloadgcc-79a490a95b8a5c194a479dcccae76d9f0393309b.tar.gz
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
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