diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-22 15:03:27 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-22 15:03:27 +0000 |
commit | 4c9e08a4756e16ab5af175be78dcdc0b61b73eab (patch) | |
tree | 1c9f6bed6ad2463273501c132977d557fd474433 /gcc/cfglayout.h | |
parent | 9a59b886c8226deaa58062a7a60fb48ca04aa6c4 (diff) | |
download | gcc-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/cfglayout.h')
-rw-r--r-- | gcc/cfglayout.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/cfglayout.h b/gcc/cfglayout.h index 4ae8b6677c9..1ab3e1f956a 100644 --- a/gcc/cfglayout.h +++ b/gcc/cfglayout.h @@ -1,5 +1,5 @@ /* Basic block reordering routines for the GNU compiler. - Copyright (C) 2000 Free Software Foundation, Inc. + Copyright (C) 2000, 2003 Free Software Foundation, Inc. This file is part of GCC. @@ -37,9 +37,9 @@ typedef struct reorder_block_def extern rtx cfg_layout_function_footer; -extern void cfg_layout_initialize PARAMS ((struct loops *)); -extern void cfg_layout_finalize PARAMS ((void)); -extern bool cfg_layout_can_duplicate_bb_p PARAMS ((basic_block)); -extern basic_block cfg_layout_duplicate_bb PARAMS ((basic_block, edge)); -extern void insn_locators_initialize PARAMS ((void)); -extern void reemit_insn_block_notes PARAMS ((void)); +extern void cfg_layout_initialize (struct loops *); +extern void cfg_layout_finalize (void); +extern bool cfg_layout_can_duplicate_bb_p (basic_block); +extern basic_block cfg_layout_duplicate_bb (basic_block, edge); +extern void insn_locators_initialize (void); +extern void reemit_insn_block_notes (void); |