From: Nadav Rotem Date: Wed, 17 Jul 2013 22:41:16 +0000 (+0000) Subject: Fix a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3a7997516982117382b9023ea1176fd53caa948d;p=oota-llvm.git Fix a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186541 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Vectorize/SLPVectorizer.cpp b/lib/Transforms/Vectorize/SLPVectorizer.cpp index 78f7783328d..f0a5e459097 100644 --- a/lib/Transforms/Vectorize/SLPVectorizer.cpp +++ b/lib/Transforms/Vectorize/SLPVectorizer.cpp @@ -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;