diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-06 18:59:38 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-06 18:59:38 +0000 |
commit | 5a2784f82e64394ffa17f8cacdb5270482ee8423 (patch) | |
tree | 76c547ec54bb4708e30224c15686141e4954541a /gcc/cfghooks.h | |
parent | c4918153fded93bf81a0c33d30cc07ec8709fb9c (diff) | |
download | linaro-gcc-5a2784f82e64394ffa17f8cacdb5270482ee8423.tar.gz linaro-gcc-5a2784f82e64394ffa17f8cacdb5270482ee8423.tar.bz2 linaro-gcc-5a2784f82e64394ffa17f8cacdb5270482ee8423.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69010 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfghooks.h')
-rw-r--r-- | gcc/cfghooks.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cfghooks.h b/gcc/cfghooks.h index a44a208a337..37457deff8b 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. */ |