[PATCH] D61021: Fix typo: (re)?soruce -> (re)?source
Enji Cooper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 23 08:36:28 PDT 2019
ngie created this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
ngie added reviewers: EricWF, MaskRay.
Closes: https://github.com/llvm/llvm-project/pull/10
In-collaboration-with: Olivier Cochard-Labbe
Signed-off-by: Enji Cooper <yaneurabeya at gmail.com>
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D61021
Files:
llvm/include/llvm/CodeGen/PseudoSourceValue.h
llvm/include/llvm/IR/CallSite.h
llvm/include/llvm/Target/TargetSchedule.td
Index: llvm/include/llvm/Target/TargetSchedule.td
===================================================================
--- llvm/include/llvm/Target/TargetSchedule.td
+++ llvm/include/llvm/Target/TargetSchedule.td
@@ -135,7 +135,7 @@
//
// An optional Super resource may be given to model these resources as
// a subset of the more general super resources. Using one of these
-// resources implies using one of the super resoruces.
+// resources implies using one of the super resources.
//
// ProcResourceUnits normally model a few buffered resources within an
// out-of-order engine. Buffered resources may be held for multiple
Index: llvm/include/llvm/IR/CallSite.h
===================================================================
--- llvm/include/llvm/IR/CallSite.h
+++ llvm/include/llvm/IR/CallSite.h
@@ -724,7 +724,7 @@
/// through (also identified by position but in the call site instruction).
///
/// NOTE that we use LLVM argument numbers (starting at 0) and not
- /// clang/soruce argument numbers (starting at 1). The -1 entries represent
+ /// clang/source argument numbers (starting at 1). The -1 entries represent
/// unknown values that are passed to the callee.
using ParameterEncodingTy = SmallVector<int, 0>;
ParameterEncodingTy ParameterEncoding;
Index: llvm/include/llvm/CodeGen/PseudoSourceValue.h
===================================================================
--- llvm/include/llvm/CodeGen/PseudoSourceValue.h
+++ llvm/include/llvm/CodeGen/PseudoSourceValue.h
@@ -122,7 +122,7 @@
bool mayAlias(const MachineFrameInfo *) const override;
};
-/// A specialized pseudo soruce value for holding GlobalValue values.
+/// A specialized pseudo source value for holding GlobalValue values.
class GlobalValuePseudoSourceValue : public CallEntryPseudoSourceValue {
const GlobalValue *GV;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61021.196262.patch
Type: text/x-patch
Size: 1860 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190423/4c207e9d/attachment.bin>
More information about the llvm-commits
mailing list