aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfghooks.h
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@gcc.gnu.org>2003-07-06 20:59:38 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2003-07-06 20:59:38 +0200
commitf55ade6e34ae3da57dd1a270c4bee55ad4f85cf5 (patch)
tree76c547ec54bb4708e30224c15686141e4954541a /gcc/cfghooks.h
parentade4289c2d5992197bc787e290cfdc3652ce9965 (diff)
downloadgcc-f55ade6e34ae3da57dd1a270c4bee55ad4f85cf5.zip
gcc-f55ade6e34ae3da57dd1a270c4bee55ad4f85cf5.tar.gz
gcc-f55ade6e34ae3da57dd1a270c4bee55ad4f85cf5.tar.bz2
basic-block.h: Convert prototypes to ISO C90.
* basic-block.h: Convert prototypes to ISO C90. * c-parse.in: Likewise. * c-pragma.h: Likewise. * c-typeck.c: Likewise. * cfghooks.h: Likewise. * cfgloopanal.c: Likewise. * dbxout.h: Likewise. * debug.h: Likewise. * dwarf2asm.h: Likewise. * gcov.c: Likewise. * gengtype-lex.l: Likewise. * sched-int.h: Likewise. * timevar.c: Likewise. From-SVN: r69010
Diffstat (limited to 'gcc/cfghooks.h')
-rw-r--r--gcc/cfghooks.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cfghooks.h b/gcc/cfghooks.h
index a44a208..37457de 100644
--- a/gcc/cfghooks.h
+++ b/gcc/cfghooks.h
@@ -32,7 +32,7 @@ struct cfg_hooks
/* Basic CFG manipulation. */
/* Return new basic block */
- basic_block (*create_basic_block) PARAMS ((void *head, void *end, basic_block after));
+ basic_block (*create_basic_block) (void *head, void *end, basic_block after);
/* Redirect edge E to the given basic block B and update underlying program
representation. Returns false when edge is not easily redirectable for
@@ -51,10 +51,10 @@ struct cfg_hooks
edge (*split_block) (basic_block b, void * i);
/* Return true when blocks A and B can be merged into single basic block. */
- bool (*can_merge_blocks_p) PARAMS ((basic_block a, basic_block b));
+ bool (*can_merge_blocks_p) (basic_block a, basic_block b);
/* Merge blocks A and B. */
- void (*merge_blocks) PARAMS ((basic_block a, basic_block b));
+ void (*merge_blocks) (basic_block a, basic_block b);
/* Higher level functions representable by primitive operations above if
we didn't have some oddities in RTL and Tree representations. */