summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Grosser <grosser@fim.uni-passau.de>2011-10-26 01:27:49 +0000
committerTobias Grosser <grosser@fim.uni-passau.de>2011-10-26 01:27:49 +0000
commitbd54f3226fd0de918d2c1dc090b60211608e68ae (patch)
tree4316cea65a4f264e8c1f8a35e3dee3c7a63c739b
parent7313337c8592cfc879cb038657b9fdf61d13d474 (diff)
downloadbcm5719-llvm-bd54f3226fd0de918d2c1dc090b60211608e68ae.tar.gz
bcm5719-llvm-bd54f3226fd0de918d2c1dc090b60211608e68ae.zip
ScopInfo: Print SCEV and not the pointer to it
llvm-svn: 143004
-rw-r--r--polly/lib/Analysis/ScopDetection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Analysis/ScopDetection.cpp b/polly/lib/Analysis/ScopDetection.cpp
index ab9720c6741..8aa14d3209f 100644
--- a/polly/lib/Analysis/ScopDetection.cpp
+++ b/polly/lib/Analysis/ScopDetection.cpp
@@ -402,7 +402,7 @@ bool ScopDetection::isValidLoop(Loop *L, DetectionContext &Context) const {
// Is the loop count affine?
const SCEV *LoopCount = SE->getBackedgeTakenCount(L);
if (!isValidAffineFunction(LoopCount, Context.CurRegion))
- INVALID(LoopBound, "Non affine loop bound '" << LoopCount << "'for loop: "
+ INVALID(LoopBound, "Non affine loop bound '" << *LoopCount << "' in loop: "
<< L->getHeader()->getNameStr());
return true;
OpenPOWER on IntegriCloud