summaryrefslogtreecommitdiff
path: root/gcc/cfghooks.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2003-06-22 17:03:27 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2003-06-22 17:03:27 +0200
commitd329e058f2de08aa52b68e97bc7ae13c0dbcbe39 (patch)
tree1c9f6bed6ad2463273501c132977d557fd474433 /gcc/cfghooks.c
parent84edd42cd48594dfe92b87af25e214ccd15d300d (diff)
downloadgcc-d329e058f2de08aa52b68e97bc7ae13c0dbcbe39.tar.gz
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.c')
-rw-r--r--gcc/cfghooks.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cfghooks.c b/gcc/cfghooks.c
index d5815a12307..525289c04f8 100644
--- a/gcc/cfghooks.c
+++ b/gcc/cfghooks.c
@@ -34,15 +34,15 @@ extern struct cfg_hooks cfg_layout_rtl_cfg_hooks;
struct cfg_hooks *cfg_hooks;
/* Initialization of functions specific to the rtl IR. */
-void
-rtl_register_cfg_hooks ()
+void
+rtl_register_cfg_hooks (void)
{
cfg_hooks = &rtl_cfg_hooks;
}
/* Initialization of functions specific to the rtl IR. */
-void
-cfg_layout_rtl_register_cfg_hooks ()
+void
+cfg_layout_rtl_register_cfg_hooks (void)
{
cfg_hooks = &cfg_layout_rtl_cfg_hooks;
}