diff options
-rw-r--r-- | polly/lib/Analysis/ScopDetection.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/polly/lib/Analysis/ScopDetection.cpp b/polly/lib/Analysis/ScopDetection.cpp index 62313566c0b..b49240239fe 100644 --- a/polly/lib/Analysis/ScopDetection.cpp +++ b/polly/lib/Analysis/ScopDetection.cpp @@ -280,9 +280,9 @@ bool ScopDetection::isValidMemoryAccess(Instruction &Inst, // Check if the base pointer of the memory access does alias with // any other pointer. This cannot be handled at the moment. - AliasSet &AS = Context.AST - .getAliasSetForPointer(BaseValue, AliasAnalysis::UnknownSize, - Inst.getMetadata(LLVMContext::MD_tbaa)); + AliasSet &AS = + Context.AST.getAliasSetForPointer(BaseValue, AliasAnalysis::UnknownSize, + Inst.getMetadata(LLVMContext::MD_tbaa)); // INVALID triggers an assertion in verifying mode, if it detects that a // SCoP was detected by SCoP detection and that this SCoP was invalidated by @@ -305,7 +305,7 @@ bool ScopDetection::isValidMemoryAccess(Instruction &Inst, std::sort(Pointers.begin(), Pointers.end()); for (std::vector<Value *>::iterator PI = Pointers.begin(), - PE = Pointers.end(); + PE = Pointers.end(); ;) { Value *V = *PI; |