aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2008-12-09 18:04:26 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2008-12-09 17:04:26 +0000
commit0e7f7d876bdc33ca332dcbc336c22cc04d4e47eb (patch)
tree4c7423dabbaca15225550f48279f4381c979fca1 /gcc
parent53873346f17c3931fb9050abb80739a27622dfb3 (diff)
downloadgcc-0e7f7d876bdc33ca332dcbc336c22cc04d4e47eb.zip
gcc-0e7f7d876bdc33ca332dcbc336c22cc04d4e47eb.tar.gz
gcc-0e7f7d876bdc33ca332dcbc336c22cc04d4e47eb.tar.bz2
* predict.c (estimate_bb_frequencies): Fix test if profile is present.
From-SVN: r142600
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/predict.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9c9ad1f..075863b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2008-12-09 Jan Hubicka <jh@suse.cz>
+
+ * predict.c (estimate_bb_frequencies): Fix test if profile is present.
+
2008-12-09 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/35468
diff --git a/gcc/predict.c b/gcc/predict.c
index 73dbcbd..22e71ce 100644
--- a/gcc/predict.c
+++ b/gcc/predict.c
@@ -2052,7 +2052,7 @@ estimate_bb_frequencies (void)
basic_block bb;
sreal freq_max;
- if (cfun->function_frequency != PROFILE_READ || !counts_to_freqs ())
+ if (profile_status != PROFILE_READ || !counts_to_freqs ())
{
static int real_values_initialized = 0;