diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-04 21:37:06 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-04 21:37:06 +0000 |
commit | 020c749b4c8119d7493328aac7462e447dec88cf (patch) | |
tree | 14f9d312df96f3a3cf47a367e3b936b8d773c4fe /gcc/cfgbuild.c | |
parent | d4e15290516b7d2d927c20a38c96c46964993bc8 (diff) | |
download | ppe42-gcc-020c749b4c8119d7493328aac7462e447dec88cf.tar.gz ppe42-gcc-020c749b4c8119d7493328aac7462e447dec88cf.zip |
* basic-block.h (profile_staus): New global variable.
* cfg.c (profile_status): Declare.
(check_bb_profile): Break out from ....; use profile_status
(dump_flow_info): ... here.
* cfgbuild.c (find_basic_blocks): Set profile_status.
* cfgexpand.c (tree_expand_cfg): Likewise.
* predict.c (estimate_probability): Likewise.
* profile.c (branch_prob): Likewise.
* tree-cfg.c (build_tree_cfg): Likewise.
(dump_function_to_file): Use check_bb_profile.
* tree-pretty-print (dump_bb_header): Likewise.
* tree-profile.c (do_tree_profiling): Cleanup.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85579 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgbuild.c')
-rw-r--r-- | gcc/cfgbuild.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/cfgbuild.c b/gcc/cfgbuild.c index 3316f024184..cb451efe4f2 100644 --- a/gcc/cfgbuild.c +++ b/gcc/cfgbuild.c @@ -546,6 +546,8 @@ find_basic_blocks (rtx f, int nregs ATTRIBUTE_UNUSED, find_basic_blocks_1 (f); + profile_status = PROFILE_ABSENT; + /* Discover the edges of our cfg. */ make_edges (ENTRY_BLOCK_PTR->next_bb, EXIT_BLOCK_PTR->prev_bb, 0); |