summaryrefslogtreecommitdiff
path: root/gcc/cfghooks.h
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-22 15:03:27 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-22 15:03:27 +0000
commit4c9e08a4756e16ab5af175be78dcdc0b61b73eab (patch)
tree1c9f6bed6ad2463273501c132977d557fd474433 /gcc/cfghooks.h
parent9a59b886c8226deaa58062a7a60fb48ca04aa6c4 (diff)
downloadgcc-4c9e08a4756e16ab5af175be78dcdc0b61b73eab.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68331 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfghooks.h')
-rw-r--r--gcc/cfghooks.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/cfghooks.h b/gcc/cfghooks.h
index 39acd662b27..3097b214da6 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 */