1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Fix indent. NFC.

llvm-svn: 280270
This commit is contained in:
Chad Rosier 2016-08-31 18:37:52 +00:00
parent af91c9e74a
commit a07337bd30

View 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();