Skip to content
This repository was archived by the owner on Apr 23, 2020. It is now read-only.

Commit 81503f1

Browse files
committed
Fix typos: (re)?sor?uce -> (re)?source
Closes: llvm/llvm-project#10 In-collaboration-with: Olivier Cochard-Labbé <olivier@FreeBSD.org> Signed-off-by: Enji Cooper <yaneurabeya@gmail.com> Differential Revision: https://reviews.llvm.org/D61021 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359277 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 15ec533 commit 81503f1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

include/llvm/CodeGen/PseudoSourceValue.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class CallEntryPseudoSourceValue : public PseudoSourceValue {
122122
bool mayAlias(const MachineFrameInfo *) const override;
123123
};
124124

125-
/// A specialized pseudo soruce value for holding GlobalValue values.
125+
/// A specialized pseudo source value for holding GlobalValue values.
126126
class GlobalValuePseudoSourceValue : public CallEntryPseudoSourceValue {
127127
const GlobalValue *GV;
128128

include/llvm/IR/CallSite.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ class AbstractCallSite {
724724
/// through (also identified by position but in the call site instruction).
725725
///
726726
/// NOTE that we use LLVM argument numbers (starting at 0) and not
727-
/// clang/soruce argument numbers (starting at 1). The -1 entries represent
727+
/// clang/source argument numbers (starting at 1). The -1 entries represent
728728
/// unknown values that are passed to the callee.
729729
using ParameterEncodingTy = SmallVector<int, 0>;
730730
ParameterEncodingTy ParameterEncoding;

include/llvm/Target/TargetSchedule.td

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class ProcResourceKind;
135135
//
136136
// An optional Super resource may be given to model these resources as
137137
// a subset of the more general super resources. Using one of these
138-
// resources implies using one of the super resoruces.
138+
// resources implies using one of the super resources.
139139
//
140140
// ProcResourceUnits normally model a few buffered resources within an
141141
// out-of-order engine. Buffered resources may be held for multiple

tools/llvm-rc/ResourceFileWriter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ Error ResourceFileWriter::writeBitmapBody(const RCResource *Base) {
722722

723723
// --- CursorResource and IconResource helpers. --- //
724724

725-
// ICONRESDIR structure. Describes a single icon in resouce group.
725+
// ICONRESDIR structure. Describes a single icon in resource group.
726726
//
727727
// Ref: msdn.microsoft.com/en-us/library/windows/desktop/ms648016.aspx
728728
struct IconResDir {

0 commit comments

Comments
 (0)