summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-05-04 21:24:27 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-05-04 21:24:27 +0000
commit30dfdfca3b91cdc47d97b4130a88a9a3fd8100e3 (patch)
treea39f23d4edbea7520ae23d8105a2aef92f7308fa
parent40a97f48f7d393a178d099d41769e5a5fdf4a52c (diff)
downloadbcm5719-llvm-30dfdfca3b91cdc47d97b4130a88a9a3fd8100e3.tar.gz
bcm5719-llvm-30dfdfca3b91cdc47d97b4130a88a9a3fd8100e3.zip
Try to fix the Polly build while I'm trying to get it to build at all locally.
llvm-svn: 156207
-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 6572091efc9..5c2dcb0b3f5 100644
--- a/polly/lib/Analysis/ScopDetection.cpp
+++ b/polly/lib/Analysis/ScopDetection.cpp
@@ -482,7 +482,7 @@ bool ScopDetection::allBlocksValid(DetectionContext &Context) const {
for (Region::block_iterator I = R.block_begin(), E = R.block_end(); I != E;
++I)
- if (!isValidBasicBlock(*I, Context))
+ if (!isValidBasicBlock(**I, Context))
return false;
return true;
OpenPOWER on IntegriCloud