summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/LoopAccessAnalysis.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@codeaurora.org>2016-08-31 18:37:52 +0000
committerChad Rosier <mcrosier@codeaurora.org>2016-08-31 18:37:52 +0000
commit83a120337af08649fe338f89537bbc7dc58476da (patch)
tree44b8ae282f4cdf77ac27fe3cb40c672d115449de /llvm/lib/Analysis/LoopAccessAnalysis.cpp
parent58892a65f438a71c4b9454513f3b7b6f70b49136 (diff)
downloadbcm5719-llvm-83a120337af08649fe338f89537bbc7dc58476da.tar.gz
bcm5719-llvm-83a120337af08649fe338f89537bbc7dc58476da.zip
Fix indent. NFC.
llvm-svn: 280270
Diffstat (limited to 'llvm/lib/Analysis/LoopAccessAnalysis.cpp')
-rw-r--r--llvm/lib/Analysis/LoopAccessAnalysis.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/LoopAccessAnalysis.cpp b/llvm/lib/Analysis/LoopAccessAnalysis.cpp
index 8c761b47bc3..81d23376fdb 100644
--- a/llvm/lib/Analysis/LoopAccessAnalysis.cpp
+++ b/llvm/lib/Analysis/LoopAccessAnalysis.cpp
@@ -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();
OpenPOWER on IntegriCloud