[polly] r301925 - [NFC] [IslAST] fix typo: "int the" -> "in the"
Siddharth Bhat via llvm-commits
llvm-commits at lists.llvm.org
Tue May 2 07:54:49 PDT 2017
Author: bollu
Date: Tue May 2 09:54:49 2017
New Revision: 301925
URL: http://llvm.org/viewvc/llvm-project?rev=301925&view=rev
Log:
[NFC] [IslAST] fix typo: "int the" -> "in the"
Modified:
polly/trunk/lib/CodeGen/IslAst.cpp
Modified: polly/trunk/lib/CodeGen/IslAst.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/IslAst.cpp?rev=301925&r1=301924&r2=301925&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/IslAst.cpp (original)
+++ polly/trunk/lib/CodeGen/IslAst.cpp Tue May 2 09:54:49 2017
@@ -351,7 +351,7 @@ IslAst::buildRunCondition(Scop *S, __isl
// Create the alias checks from the minimal/maximal accesses in each alias
// group which consists of read only and non read only (read write) accesses.
// This operation is by construction quadratic in the read-write pointers and
- // linear int the read only pointers in each alias group.
+ // linear in the read only pointers in each alias group.
for (const Scop::MinMaxVectorPairTy &MinMaxAccessPair : S->getAliasGroups()) {
auto &MinMaxReadWrite = MinMaxAccessPair.first;
auto &MinMaxReadOnly = MinMaxAccessPair.second;
More information about the llvm-commits
mailing list