From: Michael Zolotukhin Date: Fri, 24 Apr 2015 00:10:27 +0000 (+0000) Subject: Fix a couple of typos in comments. X-Git-Tag: llvmorg-3.7.0-rc1~6104 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d98330c42498582581784ffbc4dd39d2c7f100cb;p=platform%2Fupstream%2Fllvm.git Fix a couple of typos in comments. llvm-svn: 235674 --- diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 5e5de46..cdd3c68 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -280,12 +280,12 @@ protected: /// originated from one scalar instruction. typedef SmallVector VectorParts; - // When we if-convert we need create edge masks. We have to cache values so - // that we don't end up with exponential recursion/IR. + // When we if-convert we need to create edge masks. We have to cache values + // so that we don't end up with exponential recursion/IR. typedef DenseMap, VectorParts> EdgeMaskCache; - /// \brief Add checks for strides that where assumed to be 1. + /// \brief Add checks for strides that were assumed to be 1. /// /// Returns the last check instruction and the first check instruction in the /// pair as (first, last).