diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2018-01-26 08:15:29 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2018-01-26 08:15:29 +0000 |
commit | 0909ca132fcd836df843aa1ed1585bb0c15c5520 (patch) | |
tree | ae17385953adb263665e8e7fbf50177b4b5a64b1 /llvm/lib/Transforms/Vectorize | |
parent | 056d835fa4b6e9fba3e7c068ded83c3dce7975cb (diff) | |
download | bcm5719-llvm-0909ca132fcd836df843aa1ed1585bb0c15c5520.tar.gz bcm5719-llvm-0909ca132fcd836df843aa1ed1585bb0c15c5520.zip |
[NFC] fix trivial typos in comments and documents
"in in" -> "in", "on on" -> "on" etc.
llvm-svn: 323508
Diffstat (limited to 'llvm/lib/Transforms/Vectorize')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 719ae4c9c52..f7b327b30b3 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -370,7 +370,7 @@ static bool hasIrregularType(Type *Ty, const DataLayout &DL, unsigned VF) { /// A helper function that returns the reciprocal of the block probability of /// predicated blocks. If we return X, we are assuming the predicated block -/// will execute once for for every X iterations of the loop header. +/// will execute once for every X iterations of the loop header. /// /// TODO: We should use actual block probability here, if available. Currently, /// we always assume predicated blocks have a 50% chance of executing. |