Fix indent. NFC.
authorChad Rosier <mcrosier@codeaurora.org>
Wed, 31 Aug 2016 18:37:52 +0000 (18:37 +0000)
committerChad Rosier <mcrosier@codeaurora.org>
Wed, 31 Aug 2016 18:37:52 +0000 (18:37 +0000)
llvm-svn: 280270

llvm/lib/Analysis/LoopAccessAnalysis.cpp

index 8c761b4..81d2337 100644 (file)
@@ -1029,8 +1029,8 @@ bool llvm::isConsecutiveAccess(Value *A, Value *B, const DataLayout &DL,
     return false;
 
   // Make sure that A and B have the same type if required.
-  if(CheckType && PtrA->getType() != PtrB->getType())
-      return false;
+  if (CheckType && PtrA->getType() != PtrB->getType())
+    return false;
 
   unsigned PtrBitWidth = DL.getPointerSizeInBits(ASA);
   Type *Ty = cast<PointerType>(PtrA->getType())->getElementType();