aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfghooks.c
diff options
context:
space:
mode:
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 d5815a1..525289c 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;
}