diff options
author | Andreas Jaeger <aj@suse.de> | 2003-06-15 15:43:32 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-15 15:43:32 +0200 |
commit | 4682ae0463c9fcc254fe1c8ede9da9133a9956bc (patch) | |
tree | 011c105664290fc65aee6e952c836e52aa84f722 /gcc/basic-block.h | |
parent | cbdb4ba2dcf013c9ee4b1f28182596ab9ae135c5 (diff) | |
download | gcc-4682ae0463c9fcc254fe1c8ede9da9133a9956bc.zip gcc-4682ae0463c9fcc254fe1c8ede9da9133a9956bc.tar.gz gcc-4682ae0463c9fcc254fe1c8ede9da9133a9956bc.tar.bz2 |
alloc-pool.c: Convert to ISO C90 prototypes.
* alloc-pool.c: Convert to ISO C90 prototypes.
* alloc-pool.h: Likewise.
* alias.c: Likewise.
* attribs.c: Likewise.
* bb-reorder.c: Likewise.
* bitmap.h: Likewise.
* bitmap.c: Likewise.
* builtins.c: Likewise.
* tree.h: Convert prototypes of attribs.c to ISO C90.
* basic-block.h: Convert prototypes of bb-reorder.c to ISO C90.
* rtl.h: Convert prototypes of alias.c and builtins.c to ISO C90.
* expr.h: Convert prototypes of builtins.c to ISO C90.
From-SVN: r67975
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 252774e..9e57f19 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -542,7 +542,6 @@ extern bool probably_never_executed_bb_p PARAMS ((basic_block)); /* In flow.c */ extern void init_flow PARAMS ((void)); -extern void reorder_basic_blocks PARAMS ((void)); extern void dump_bb PARAMS ((basic_block, FILE *)); extern void debug_bb PARAMS ((basic_block)); extern basic_block debug_bb_n PARAMS ((int)); @@ -619,6 +618,9 @@ extern rtx hoist_insn_to_edge PARAMS ((rtx, edge, rtx, rtx)); extern bool inside_basic_block_p PARAMS ((rtx)); extern bool control_flow_insn_p PARAMS ((rtx)); +/* In bb-reorder.c */ +extern void reorder_basic_blocks (void); + /* In dominance.c */ enum cdi_direction |