diff options
author | Andreas Jaeger <aj@suse.de> | 2003-06-22 17:03:27 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-22 17:03:27 +0200 |
commit | d329e058f2de08aa52b68e97bc7ae13c0dbcbe39 (patch) | |
tree | 1c9f6bed6ad2463273501c132977d557fd474433 /gcc/cfghooks.h | |
parent | 84edd42cd48594dfe92b87af25e214ccd15d300d (diff) | |
download | gcc-d329e058f2de08aa52b68e97bc7ae13c0dbcbe39.zip gcc-d329e058f2de08aa52b68e97bc7ae13c0dbcbe39.tar.gz gcc-d329e058f2de08aa52b68e97bc7ae13c0dbcbe39.tar.bz2 |
caller-save.c: Convert to ISO C90.
* caller-save.c: Convert to ISO C90.
* calls.c: Likewise.
* cfg.c: Likewise.
* cfganal.c: Likewise.
* cfgbuild.c: Likewise.
* cfgcleanup.c: Likewise.
* cfghooks.c: Likewise.
* cfglayout.c: Likewise.
* cfglayout.h: Likewise.
* cfgloop.c: Likewise.
* cfgloop.h: Likewise.
* cfgloopanal.c: Likewise.
* cfgloopmainip.c: Likewise.
* cfgrtl.c: Likewise.
From-SVN: r68331
Diffstat (limited to 'gcc/cfghooks.h')
-rw-r--r-- | gcc/cfghooks.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/cfghooks.h b/gcc/cfghooks.h index 39acd66..3097b21 100644 --- a/gcc/cfghooks.h +++ b/gcc/cfghooks.h @@ -26,30 +26,30 @@ struct cfg_hooks { /* Debugging. Do not use macros to hook these so they can be called from debugger! */ - int (*cfgh_verify_flow_info) PARAMS ((void)); - void (*dump_bb) PARAMS ((basic_block, FILE *)); + int (*cfgh_verify_flow_info) (void); + void (*dump_bb) (basic_block, FILE *); /* Basic CFG manipulation. */ /* Redirect edge E to the given basic block B and update underlying program representation. Returns false when edge is not easilly redirectable for whatever reason. */ - bool (*redirect_edge_and_branch) PARAMS ((edge e, basic_block b)); + bool (*redirect_edge_and_branch) (edge e, basic_block b); /* Same as the above but allows redirecting of fallthru edges. In that case newly created forwarder basic block is returned. It aborts when called on abnormal edge. */ - basic_block (*redirect_edge_and_branch_force)PARAMS ((edge, basic_block)); + basic_block (*redirect_edge_and_branch_force) (edge, basic_block); /* Remove given basic block and all edges possibly pointing into it. */ - void (*delete_block)PARAMS ((basic_block)); + void (*delete_block) (basic_block); /* Split basic block B after specified instruction I. */ - edge (*split_block) PARAMS ((basic_block b, void * i)); + edge (*split_block) (basic_block b, void * i); /* Higher level functions representable by primitive operations above if we didn't have some oddities in RTL and Tree representations. */ - basic_block (*cfgh_split_edge) PARAMS ((edge)); + basic_block (*cfgh_split_edge) (edge); }; #define redirect_edge_and_branch(e,b) cfg_hooks->redirect_edge_and_branch (e,b) @@ -65,7 +65,7 @@ extern struct cfg_hooks rtl_cfg_hooks; extern struct cfg_hooks *cfg_hooks; /* Declarations. */ -extern void rtl_register_cfg_hooks PARAMS ((void)); -extern void cfg_layout_rtl_register_cfg_hooks PARAMS ((void)); +extern void rtl_register_cfg_hooks (void); +extern void cfg_layout_rtl_register_cfg_hooks (void); #endif /* GCC_CFGHOOKS_H */ |