Skip to content

Commit d4a0154

Browse files
authored
[llvm-project] Fix typo "seperate" (#95373)
1 parent cd94fa7 commit d4a0154

File tree

64 files changed

+106
-106
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+106
-106
lines changed

Diff for: clang-tools-extra/clangd/TidyProvider.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -195,10 +195,10 @@ TidyProvider addTidyChecks(llvm::StringRef Checks,
195195
}
196196

197197
TidyProvider disableUnusableChecks(llvm::ArrayRef<std::string> ExtraBadChecks) {
198-
constexpr llvm::StringLiteral Seperator(",");
198+
constexpr llvm::StringLiteral Separator(",");
199199
static const std::string BadChecks = llvm::join_items(
200-
Seperator,
201-
// We want this list to start with a seperator to
200+
Separator,
201+
// We want this list to start with a separator to
202202
// simplify appending in the lambda. So including an
203203
// empty string here will force that.
204204
"",
@@ -227,7 +227,7 @@ TidyProvider disableUnusableChecks(llvm::ArrayRef<std::string> ExtraBadChecks) {
227227
for (const std::string &Str : ExtraBadChecks) {
228228
if (Str.empty())
229229
continue;
230-
Size += Seperator.size();
230+
Size += Separator.size();
231231
if (LLVM_LIKELY(Str.front() != '-'))
232232
++Size;
233233
Size += Str.size();
@@ -238,7 +238,7 @@ TidyProvider disableUnusableChecks(llvm::ArrayRef<std::string> ExtraBadChecks) {
238238
for (const std::string &Str : ExtraBadChecks) {
239239
if (Str.empty())
240240
continue;
241-
DisableGlob += Seperator;
241+
DisableGlob += Separator;
242242
if (LLVM_LIKELY(Str.front() != '-'))
243243
DisableGlob.push_back('-');
244244
DisableGlob += Str;

Diff for: clang/include/clang/Frontend/FrontendOptions.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ class FrontendOptions {
520520
std::string ProductName;
521521

522522
// Currently this is only used as part of the `-extract-api` action.
523-
// A comma seperated list of files providing a list of APIs to
523+
// A comma separated list of files providing a list of APIs to
524524
// ignore when extracting documentation.
525525
std::vector<std::string> ExtractAPIIgnoresFileList;
526526

Diff for: clang/include/clang/InstallAPI/DylibVerifier.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class DylibVerifier : llvm::MachO::RecordVisitor {
135135

136136
// Check if an internal declaration in zippered library has an
137137
// external declaration for a different platform. This results
138-
// in the symbol being in a "seperate" platform slice.
138+
// in the symbol being in a "separate" platform slice.
139139
bool shouldIgnoreInternalZipperedSymbol(const Record *R,
140140
const SymbolContext &SymCtx) const;
141141

Diff for: clang/lib/InstallAPI/Visitor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ bool InstallAPIVisitor::VisitVarDecl(const VarDecl *D) {
218218
if (isa<ParmVarDecl>(D))
219219
return true;
220220

221-
// Skip variables in records. They are handled seperately for C++.
221+
// Skip variables in records. They are handled separately for C++.
222222
if (D->getDeclContext()->isRecord())
223223
return true;
224224

Diff for: clang/lib/Serialization/ASTWriterStmt.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace clang {
3737
unsigned AbbrevToUse;
3838

3939
/// A helper that can help us to write a packed bit across function
40-
/// calls. For example, we may write seperate bits in seperate functions:
40+
/// calls. For example, we may write separate bits in separate functions:
4141
///
4242
/// void VisitA(A* a) {
4343
/// Record.push_back(a->isSomething());

Diff for: compiler-rt/test/dfsan/custom.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2280,7 +2280,7 @@ void test_sscanf() {
22802280
// %n, %s, %d, %f, and %% already tested
22812281
}
22822282

2283-
// Tested by a seperate source file. This empty function is here to appease the
2283+
// Tested by a separate source file. This empty function is here to appease the
22842284
// check-wrappers script.
22852285
void test_fork() {}
22862286

Diff for: compiler-rt/test/orc/TestCases/Linux/ppc64/trivial-tls-pwr10.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// RUN: %clangxx -fPIC -c -o %t/main.o %S/Inputs/trivial-tls-main.cpp
33
// RUN: %clangxx -fPIC -c -o %t/pwr10.o %S/Inputs/trivial-tls-pwr10.cpp
44
// RUN: %llvm_jitlink %t/main.o %t/pwr10.o
5-
// FIXME: We seperate pwr10 code from main object file due to currrent
5+
// FIXME: We separate pwr10 code from main object file due to currrent
66
// implementation only supports one PLT stub for the same symbol.
77
// For example, `bl __tls_get_addr` in one object file has only one PLT stub,
88
// however we need another different PLT stub for `bl __tls_get_addr@notoc`

Diff for: flang/examples/FlangOmpReport/yaml_summarizer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Parameters:
2222
2323
-d --directory Specify which directory to scan. Multiple directories can be searched by
24-
providing a semicolon seperated list of directories.
24+
providing a semicolon separated list of directories.
2525
2626
-l --log Combine all yaml files into one log (instead of generating a summary)
2727

Diff for: flang/lib/Semantics/check-omp-structure.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -2781,7 +2781,7 @@ void OmpStructureChecker::CheckIsLoopIvPartOfClause(
27812781
}
27822782
}
27832783
}
2784-
// Following clauses have a seperate node in parse-tree.h.
2784+
// Following clauses have a separate node in parse-tree.h.
27852785
// Atomic-clause
27862786
CHECK_SIMPLE_PARSER_CLAUSE(OmpAtomicRead, OMPC_read)
27872787
CHECK_SIMPLE_PARSER_CLAUSE(OmpAtomicWrite, OMPC_write)
@@ -2887,18 +2887,18 @@ void OmpStructureChecker::CheckAllowedMapTypes(
28872887
const parser::OmpMapType::Type &type,
28882888
const std::list<parser::OmpMapType::Type> &allowedMapTypeList) {
28892889
if (!llvm::is_contained(allowedMapTypeList, type)) {
2890-
std::string commaSeperatedMapTypes;
2890+
std::string commaSeparatedMapTypes;
28912891
llvm::interleave(
28922892
allowedMapTypeList.begin(), allowedMapTypeList.end(),
28932893
[&](const parser::OmpMapType::Type &mapType) {
2894-
commaSeperatedMapTypes.append(parser::ToUpperCaseLetters(
2894+
commaSeparatedMapTypes.append(parser::ToUpperCaseLetters(
28952895
parser::OmpMapType::EnumToString(mapType)));
28962896
},
2897-
[&] { commaSeperatedMapTypes.append(", "); });
2897+
[&] { commaSeparatedMapTypes.append(", "); });
28982898
context_.Say(GetContext().clauseSource,
28992899
"Only the %s map types are permitted "
29002900
"for MAP clauses on the %s directive"_err_en_US,
2901-
commaSeperatedMapTypes, ContextDirectiveAsFortran());
2901+
commaSeparatedMapTypes, ContextDirectiveAsFortran());
29022902
}
29032903
}
29042904

Diff for: flang/test/Driver/mllvm_vs_mmlir.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
! Verify that `-mllvm` options are forwarded to LLVM and `-mmlir` to MLIR.
22

3-
! In practice, '-mmlir --help' is a super-set of '-mllvm --help' and that limits what we can test here. With a better seperation of
3+
! In practice, '-mmlir --help' is a super-set of '-mllvm --help' and that limits what we can test here. With a better separation of
44
! LLVM, MLIR and Flang global options, we should be able to write a stricter test.
55

66
! RUN: %flang_fc1 -mmlir --help | FileCheck %s --check-prefix=MLIR

Diff for: libc/src/__support/FPUtil/x86_64/FEnvImpl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ LIBC_INLINE int raise_except(int excepts) {
248248
// of the "Intel 64 and IA-32 Architectures Software Developer's
249249
// Manual, Vol 1".
250250

251-
// FPU status word is read for each exception seperately as the
251+
// FPU status word is read for each exception separately as the
252252
// exception handler can potentially write to it (typically to clear
253253
// the corresponding exception flag). By reading it separately, we
254254
// ensure that the writes by the exception handler are maintained

Diff for: libc/src/stdio/printf_core/float_hex_converter.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -199,13 +199,13 @@ LIBC_INLINE int convert_float_hex_exp(Writer *writer,
199199
constexpr cpp::string_view HEXADECIMAL_POINT(".");
200200

201201
// This is for the letter 'p' before the exponent.
202-
const char exp_seperator = a + ('p' - 'a');
203-
constexpr int EXP_SEPERATOR_LEN = 1;
202+
const char exp_separator = a + ('p' - 'a');
203+
constexpr int EXP_SEPARATOR_LEN = 1;
204204

205205
padding = static_cast<int>(to_conv.min_width - (sign_char > 0 ? 1 : 0) -
206206
PREFIX_LEN - mant_digits - trailing_zeroes -
207207
static_cast<int>(has_hexadecimal_point) -
208-
EXP_SEPERATOR_LEN - (EXP_LEN - exp_cur));
208+
EXP_SEPARATOR_LEN - (EXP_LEN - exp_cur));
209209
if (padding < 0)
210210
padding = 0;
211211

@@ -223,7 +223,7 @@ LIBC_INLINE int convert_float_hex_exp(Writer *writer,
223223
RET_IF_RESULT_NEGATIVE(writer->write({mant_buffer + 1, mant_digits - 1}));
224224
if (trailing_zeroes > 0)
225225
RET_IF_RESULT_NEGATIVE(writer->write('0', trailing_zeroes));
226-
RET_IF_RESULT_NEGATIVE(writer->write(exp_seperator));
226+
RET_IF_RESULT_NEGATIVE(writer->write(exp_separator));
227227
RET_IF_RESULT_NEGATIVE(
228228
writer->write({exp_buffer + exp_cur, EXP_LEN - exp_cur}));
229229
if (padding > 0)
@@ -247,7 +247,7 @@ LIBC_INLINE int convert_float_hex_exp(Writer *writer,
247247
RET_IF_RESULT_NEGATIVE(writer->write({mant_buffer + 1, mant_digits - 1}));
248248
if (trailing_zeroes > 0)
249249
RET_IF_RESULT_NEGATIVE(writer->write('0', trailing_zeroes));
250-
RET_IF_RESULT_NEGATIVE(writer->write(exp_seperator));
250+
RET_IF_RESULT_NEGATIVE(writer->write(exp_separator));
251251
RET_IF_RESULT_NEGATIVE(
252252
writer->write({exp_buffer + exp_cur, EXP_LEN - exp_cur}));
253253
}

Diff for: libc/test/src/__support/str_to_float_comparison_test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ int main(int argc, char *argv[]) {
143143
int fails = 0;
144144

145145
// Bitdiffs are cases where the expected result and actual result only differ
146-
// by +/- the least significant bit. They are tracked seperately from larger
146+
// by +/- the least significant bit. They are tracked separately from larger
147147
// failures since a bitdiff is most likely the result of a rounding error, and
148148
// splitting them off makes them easier to track down.
149149
int bitdiffs = 0;

Diff for: lld/test/wasm/data-segments.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
; DIS-EMPTY:
162162
; DIS-NEXT: end
163163

164-
; In PIC mode __wasm_apply_data_relocs is export seperatly to __wasm_call_ctors
164+
; In PIC mode __wasm_apply_data_relocs is export separatly to __wasm_call_ctors
165165
; PIC-DIS: <__wasm_apply_data_relocs>:
166166
; PIC-DIS-EMPTY:
167167

Diff for: lldb/include/lldb/Expression/DWARFExpressionList.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class DWARFExpressionList {
9292
lldb::addr_t func_load_addr, lldb::addr_t file_addr,
9393
ABI *abi) const;
9494

95-
/// Dump all locaitons with each seperated by new line.
95+
/// Dump all locaitons with each separated by new line.
9696
void GetDescription(Stream *s, lldb::DescriptionLevel level, ABI *abi) const;
9797

9898
/// Search for a load address in the dwarf location list

Diff for: lldb/include/lldb/Target/MemoryTagManager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class MemoryTagManager {
103103
// transport.
104104
virtual size_t GetTagSizeInBytes() const = 0;
105105

106-
// Unpack tags from their stored format (e.g. gdb qMemTags data) into seperate
106+
// Unpack tags from their stored format (e.g. gdb qMemTags data) into separate
107107
// tags.
108108
//
109109
// Checks that each tag is within the expected value range and if granules is

Diff for: lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ NativeRegisterContextLinux_arm64::ReadRegister(const RegisterInfo *reg_info,
388388
return error;
389389
}
390390

391-
// ZA is part of the SME set but uses a seperate member buffer for
391+
// ZA is part of the SME set but uses a separate member buffer for
392392
// storage. Therefore its effective byte offset is always 0 even if it
393393
// isn't 0 within the SME register set.
394394
src = (uint8_t *)GetZABuffer() + GetZAHeaderSize();

Diff for: lldb/test/API/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ set(LLDB_TEST_ARCH
3636
# Users can override LLDB_TEST_USER_ARGS to specify arbitrary arguments to pass to the script
3737
set(LLDB_TEST_USER_ARGS
3838
""
39-
CACHE STRING "Specify additional arguments to pass to test runner. Seperate \
39+
CACHE STRING "Specify additional arguments to pass to test runner. Separate \
4040
items with \";\". For example: '-C;gcc;-C;clang;-A;i386;-A;x86_64'")
4141

4242
set(LLDB_TEST_COMMON_ARGS_VAR

Diff for: lldb/test/API/tools/lldb-server/memory-tagging/TestGdbRemoteMemoryTagging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def test_tag_write_QMemTags_packets(self):
170170
self.check_tag_write("{:x},20".format(buf_address), "E03")
171171
# Missing data
172172
self.check_tag_write("{:x},20:1".format(buf_address), "E03")
173-
# Zero length write must still include seperator after type
173+
# Zero length write must still include separator after type
174174
self.check_tag_write("{:x},0:1".format(buf_address), "E03")
175175
# Empty address
176176
self.check_tag_write(",10:1:01", "E03")

Diff for: lldb/test/Shell/SymbolFile/DWARF/x86/DW_AT_data_bit_offset-DW_OP_stack_value.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
#
5252
# DW_AT_location (DW_OP_constu 0x64a40101, DW_OP_stack_value)
5353
#
54-
# to work-around a seperate bug.
54+
# to work-around a separate bug.
5555

5656
.zerofill __DATA,__bss,__type_anchor,4,2 ## @_type_anchor
5757
.zerofill __DATA,__bss,_ug.0,1,2 ## @ug.0

Diff for: llvm/include/llvm/CodeGen/LiveRegUnits.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class LiveRegUnits {
4343
/// For a machine instruction \p MI, adds all register units used in
4444
/// \p UsedRegUnits and defined or clobbered in \p ModifiedRegUnits. This is
4545
/// useful when walking over a range of instructions to track registers
46-
/// used or defined seperately.
46+
/// used or defined separately.
4747
static void accumulateUsedDefed(const MachineInstr &MI,
4848
LiveRegUnits &ModifiedRegUnits,
4949
LiveRegUnits &UsedRegUnits,

Diff for: llvm/include/llvm/CodeGen/MIRFormatter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class MIRFormatter {
4646
}
4747

4848
/// Implement target specific parsing of immediate mnemonics. The mnemonic is
49-
/// dot seperated strings.
49+
/// dot separated strings.
5050
virtual bool parseImmMnemonic(const unsigned OpCode, const unsigned OpIdx,
5151
StringRef Src, int64_t &Imm,
5252
ErrorCallbackType ErrorCallback) const {

Diff for: llvm/include/llvm/MC/MCAsmInfo.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ class MCAsmInfo {
393393
/// for ELF targets. Defaults to true.
394394
bool HasSingleParameterDotFile = true;
395395

396-
/// True if the target has a four strings .file directive, strings seperated
396+
/// True if the target has a four strings .file directive, strings separated
397397
/// by comma. Defaults to false.
398398
bool HasFourStringsDotFile = false;
399399

Diff for: llvm/include/llvm/Support/raw_socket_stream.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class ListeningSocket {
6161
std::atomic<int> FD;
6262
std::string SocketPath; // Not modified after construction
6363

64-
/// If a seperate thread calls ListeningSocket::shutdown, the ListeningSocket
64+
/// If a separate thread calls ListeningSocket::shutdown, the ListeningSocket
6565
/// file descriptor (FD) could be closed while ::poll is waiting for it to be
6666
/// ready to perform a I/O operations. ::poll will continue to block even
6767
/// after FD is closed so use a self-pipe mechanism to get ::poll to return

Diff for: llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ class LLVM_LIBRARY_VISIBILITY CodeViewDebug : public DebugHandlerBase {
220220
// DIGlobalVariableExpression referencing the DIGlobalVariable.
221221
DenseMap<const DIGlobalVariable *, uint64_t> CVGlobalVariableOffsets;
222222

223-
// Map used to seperate variables according to the lexical scope they belong
223+
// Map used to separate variables according to the lexical scope they belong
224224
// in. This is populated by recordLocalVariable() before
225225
// collectLexicalBlocks() separates the variables between the FunctionInfo
226226
// and LexicalBlocks.

Diff for: llvm/lib/CodeGen/AssignmentTrackingAnalysis.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2493,7 +2493,7 @@ removeRedundantDbgLocsUsingBackwardScan(const BasicBlock *BB,
24932493
bool Changed = false;
24942494
SmallDenseMap<DebugAggregate, BitVector> VariableDefinedBytes;
24952495
// Scan over the entire block, not just over the instructions mapped by
2496-
// FnVarLocs, because wedges in FnVarLocs may only be seperated by debug
2496+
// FnVarLocs, because wedges in FnVarLocs may only be separated by debug
24972497
// instructions.
24982498
for (const Instruction &I : reverse(*BB)) {
24992499
if (!isa<DbgVariableIntrinsic>(I)) {
@@ -2593,7 +2593,7 @@ removeRedundantDbgLocsUsingForwardScan(const BasicBlock *BB,
25932593
VariableMap;
25942594

25952595
// Scan over the entire block, not just over the instructions mapped by
2596-
// FnVarLocs, because wedges in FnVarLocs may only be seperated by debug
2596+
// FnVarLocs, because wedges in FnVarLocs may only be separated by debug
25972597
// instructions.
25982598
for (const Instruction &I : *BB) {
25992599
// Get the defs that come just before this instruction.
@@ -2681,7 +2681,7 @@ removeUndefDbgLocsFromEntryBlock(const BasicBlock *BB,
26812681
DenseMap<DebugVariable, std::pair<Value *, DIExpression *>> VariableMap;
26822682

26832683
// Scan over the entire block, not just over the instructions mapped by
2684-
// FnVarLocs, because wedges in FnVarLocs may only be seperated by debug
2684+
// FnVarLocs, because wedges in FnVarLocs may only be separated by debug
26852685
// instructions.
26862686
for (const Instruction &I : *BB) {
26872687
// Get the defs that come just before this instruction.

Diff for: llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6606,15 +6606,15 @@ void SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I,
66066606
return;
66076607
}
66086608
case Intrinsic::dbg_assign: {
6609-
// Debug intrinsics are handled seperately in assignment tracking mode.
6609+
// Debug intrinsics are handled separately in assignment tracking mode.
66106610
if (AssignmentTrackingEnabled)
66116611
return;
66126612
// If assignment tracking hasn't been enabled then fall through and treat
66136613
// the dbg.assign as a dbg.value.
66146614
[[fallthrough]];
66156615
}
66166616
case Intrinsic::dbg_value: {
6617-
// Debug intrinsics are handled seperately in assignment tracking mode.
6617+
// Debug intrinsics are handled separately in assignment tracking mode.
66186618
if (AssignmentTrackingEnabled)
66196619
return;
66206620
const DbgValueInst &DI = cast<DbgValueInst>(I);

Diff for: llvm/lib/FileCheck/FileCheck.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ Expected<std::unique_ptr<Expression>> Pattern::parseNumericSubstitutionBlock(
624624
ExpressionFormat ExplicitFormat = ExpressionFormat();
625625
unsigned Precision = 0;
626626

627-
// Parse format specifier (NOTE: ',' is also an argument seperator).
627+
// Parse format specifier (NOTE: ',' is also an argument separator).
628628
size_t FormatSpecEnd = Expr.find(',');
629629
size_t FunctionStart = Expr.find('(');
630630
if (FormatSpecEnd != StringRef::npos && FormatSpecEnd < FunctionStart) {

Diff for: llvm/lib/IR/DebugInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2010,7 +2010,7 @@ bool calculateFragmentIntersectImpl(
20102010
// SliceSizeInBits=32, Dest=%dest, Assign=dbg.assign)
20112011
//
20122012
// Drawing the store (s) in memory followed by the shortened version ($),
2013-
// then the dbg.assign (d), with the fragment information on a seperate scale
2013+
// then the dbg.assign (d), with the fragment information on a separate scale
20142014
// underneath:
20152015
//
20162016
// Memory

Diff for: llvm/lib/MC/MCPseudoProbe.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ void MCPseudoProbeInlineTree::emit(MCObjectStreamer *MCOS,
146146
dbgs() << "Group [\n";
147147
MCPseudoProbeTable::DdgPrintIndent += 2;
148148
});
149-
assert(!isRoot() && "Root should be handled seperately");
149+
assert(!isRoot() && "Root should be handled separately");
150150

151151
// Emit probes grouped by GUID.
152152
LLVM_DEBUG({

Diff for: llvm/lib/Support/VirtualFileSystem.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,7 @@ std::error_code RedirectingFileSystem::makeAbsolute(SmallVectorImpl<char> &Path)
13731373
llvm::sys::path::is_absolute(Path,
13741374
llvm::sys::path::Style::windows_backslash))
13751375
// This covers windows absolute path with forward slash as well, as the
1376-
// forward slashes are treated as path seperation in llvm::path
1376+
// forward slashes are treated as path separation in llvm::path
13771377
// regardless of what path::Style is used.
13781378
return {};
13791379

Diff for: llvm/lib/Support/raw_socket_stream.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ void ListeningSocket::shutdown() {
266266
::close(ObservedFD);
267267
::unlink(SocketPath.c_str());
268268

269-
// Ensure ::poll returns if shutdown is called by a seperate thread
269+
// Ensure ::poll returns if shutdown is called by a separate thread
270270
char Byte = 'A';
271271
ssize_t written = ::write(PipeFD[1], &Byte, 1);
272272

Diff for: llvm/lib/Target/ARM/ARMISelLowering.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13709,7 +13709,7 @@ static SDValue PerformADDVecReduce(SDNode *N, SelectionDAG &DAG,
1370913709
// t2: i64 = build_pair t1, t1:1
1371013710
// t3: i64 = add t2, y
1371113711
// Otherwise we try to push the add up above VADDLVAx, to potentially allow
13712-
// the add to be simplified seperately.
13712+
// the add to be simplified separately.
1371313713
// We also need to check for sext / zext and commutitive adds.
1371413714
auto MakeVecReduce = [&](unsigned Opcode, unsigned OpcodeA, SDValue NA,
1371513715
SDValue NB) {

0 commit comments

Comments
 (0)