[polly] r186289 - ScopDetect: clang-format

Tobias Grosser grosser at fim.uni-passau.de
Sun Jul 14 11:09:43 PDT 2013


Author: grosser
Date: Sun Jul 14 13:09:43 2013
New Revision: 186289

URL: http://llvm.org/viewvc/llvm-project?rev=186289&view=rev
Log:
ScopDetect: clang-format

Modified:
    polly/trunk/lib/Analysis/ScopDetection.cpp

Modified: polly/trunk/lib/Analysis/ScopDetection.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopDetection.cpp?rev=186289&r1=186288&r2=186289&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetection.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetection.cpp Sun Jul 14 13:09:43 2013
@@ -280,9 +280,9 @@ bool ScopDetection::isValidMemoryAccess(
 
   // 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(
     std::sort(Pointers.begin(), Pointers.end());
 
     for (std::vector<Value *>::iterator PI = Pointers.begin(),
-           PE = Pointers.end();
+                                        PE = Pointers.end();
          ;) {
       Value *V = *PI;
 





More information about the llvm-commits mailing list