Fix a comment.

llvm-svn: 186541
This commit is contained in:
Nadav Rotem 2013-07-17 22:41:16 +00:00
parent d2eb07acae
commit 43639e8492
1 changed files with 1 additions and 1 deletions

View File

@ -979,7 +979,7 @@ bool BoUpSLP::isConsecutiveAccess(Value *A, Value *B) {
if (!PtrA || !PtrB || (ASA != ASB))
return false;
// Check that A and B are of the same type.
// Make sure that A and B are different pointers of the same type.
if (PtrA == PtrB || PtrA->getType() != PtrB->getType())
return false;