diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2004-10-24 01:46:38 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2004-10-23 18:46:38 -0700 |
commit | 711a89d6e08954262288d10cfdafdd9d38b4596f (patch) | |
tree | 32bda3d513d0655a8940d5fa1190b2ee1a77574e /gcc/predict.c | |
parent | 92453b2172998db63322661bc9dbbf16b3b013f8 (diff) | |
download | gcc-711a89d6e08954262288d10cfdafdd9d38b4596f.zip gcc-711a89d6e08954262288d10cfdafdd9d38b4596f.tar.gz gcc-711a89d6e08954262288d10cfdafdd9d38b4596f.tar.bz2 |
predict.c (predict_loops): Call scev_finalize instead of scev_reset.
2004-10-23 Andrew Pinski <pinskia@physics.uc.edu>
* predict.c (predict_loops): Call scev_finalize instead of
scev_reset.
From-SVN: r89504
Diffstat (limited to 'gcc/predict.c')
-rw-r--r-- | gcc/predict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/predict.c b/gcc/predict.c index 1078ab8..f338789 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -695,7 +695,7 @@ predict_loops (struct loops *loops_info, bool rtlsimpleloops) } if (!rtlsimpleloops) - scev_reset (); + scev_finalize (); } /* Attempt to predict probabilities of BB outgoing edges using local |