[PATCH] D62136: [TTI] Fix some typos in comments
Pavel Samolysov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon May 20 04:30:56 PDT 2019
psamolysov created this revision.
psamolysov added a reviewer: craig.topper.
psamolysov added a project: LLVM.
Herald added a subscriber: llvm-commits.
'implementaion' -> 'implementation'
'non-unform' -> 'non-uniform'
'mimimum' -> 'minimum'
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D62136
Files:
llvm/include/llvm/Analysis/TargetTransformInfo.h
Index: llvm/include/llvm/Analysis/TargetTransformInfo.h
===================================================================
--- llvm/include/llvm/Analysis/TargetTransformInfo.h
+++ llvm/include/llvm/Analysis/TargetTransformInfo.h
@@ -80,7 +80,7 @@
/// API below.
///
/// This is used by targets to construct a TTI wrapping their target-specific
- /// implementaion that encodes appropriate costs for their target.
+ /// implementation that encodes appropriate costs for their target.
template <typename T> TargetTransformInfo(T Impl);
/// Construct a baseline TTI object using a minimal implementation of
@@ -246,7 +246,7 @@
ArrayRef<const Value *> Arguments,
const User *U = nullptr) const;
- /// \Return the expected cost of a memcpy, which could e.g. depend on the
+ /// \return the expected cost of a memcpy, which could e.g. depend on the
/// source/destination type and alignment and the number of bytes copied.
int getMemcpyCost(const Instruction *I) const;
@@ -304,7 +304,7 @@
// Returns true for the target specific
// set of operations which produce uniform result
- // even taking non-unform arguments
+ // even taking non-uniform arguments
bool isAlwaysUniform(const Value *V) const;
/// Returns the address space ID for a target's 'flat' address space. Note
@@ -716,7 +716,7 @@
bool shouldMaximizeVectorBandwidth(bool OptSize) const;
/// \return The minimum vectorization factor for types of given element
- /// bit width, or 0 if there is no mimimum VF. The returned value only
+ /// bit width, or 0 if there is no minimum VF. The returned value only
/// applies when shouldMaximizeVectorBandwidth returns true.
unsigned getMinimumVF(unsigned ElemWidth) const;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D62136.200251.patch
Type: text/x-patch
Size: 1790 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190520/ce299245/attachment.bin>
More information about the llvm-commits
mailing list