diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-05 15:44:56 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-05 15:44:56 +0000 |
commit | 4c63f34f41076311aa4377d459b9543ceb08be6b (patch) | |
tree | ae1e26500d05e462719e64d74f2e88ac66246798 /gcc/basic-block.h | |
parent | 0db62750dc09e38bac01537c978c5e906a5a1573 (diff) | |
download | gcc-4c63f34f41076311aa4377d459b9543ceb08be6b.tar.gz |
* basic-block.h (verify_flow_info): Declare.
(flow_loop_outside_edge_p): Declare.
* flow.c (verify_flow_info): Remove declaration.
(clear_log_links, flow_loop_outside_edge_p): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32932 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 7705daa2b12..c3a9d9a2ab5 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -453,5 +453,11 @@ extern void debug_bb_n PARAMS ((int)); extern void dump_regset PARAMS ((regset, FILE *)); extern void debug_regset PARAMS ((regset)); +/* This function is always defined so it can be called from the + debugger, and it is declared extern so we don't get warnings about + it being unused. */ +extern void verify_flow_info PARAMS ((void)); +extern int flow_loop_outside_edge_p PARAMS ((const struct loop *, edge)); + #endif /* _BASIC_BLOCK_H */ |