diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-19 02:59:15 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-19 02:59:15 +0000 |
commit | db886c6470c236ea133ab824d7d654e9763aa2d9 (patch) | |
tree | 9e718d4515ab5afbf9657247871304fb8472e336 /gcc/basic-block.h | |
parent | 2dd358a2c39611520c6b3371a36413e63792bc6b (diff) | |
download | gcc-db886c6470c236ea133ab824d7d654e9763aa2d9.tar.gz |
* basic-block.h (flow_bb_inside_loop_p): Correct prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60279 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index a72b9b9dc3c..c57c89c2499 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -752,8 +752,10 @@ extern void free_aux_for_edges PARAMS ((void)); it being unused. */ extern void verify_flow_info PARAMS ((void)); extern bool flow_loop_outside_edge_p PARAMS ((const struct loop *, edge)); -extern bool flow_loop_nested_p PARAMS ((const struct loop *, const struct loop *)); -extern bool flow_bb_inside_loop_p PARAMS ((const struct loop *, basic_block)); +extern bool flow_loop_nested_p PARAMS ((const struct loop *, + const struct loop *)); +extern bool flow_bb_inside_loop_p PARAMS ((const struct loop *, + const basic_block)); extern basic_block *get_loop_body PARAMS ((const struct loop *)); extern int dfs_enumerate_from PARAMS ((basic_block, int, bool (*)(basic_block, void *), |