From c8974af1645587c4ee012c0ae43fe384c7e1c9ac Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 4 Dec 2020 10:18:44 -0500 Subject: [PATCH] fix typos to cycle bots --- lld/COFF/DebugTypes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lld/COFF/DebugTypes.cpp b/lld/COFF/DebugTypes.cpp index 029da96..9db61fc 100644 --- a/lld/COFF/DebugTypes.cpp +++ b/lld/COFF/DebugTypes.cpp @@ -647,7 +647,7 @@ void TpiSource::mergeTypeRecord(TypeIndex curIndex, CVType ty) { merged.recHashes.push_back(pdbHash); // Retain a mapping from PDB function id to PDB function type. This mapping is - // used during symbol procesing to rewrite S_GPROC32_ID symbols to S_GPROC32 + // used during symbol processing to rewrite S_GPROC32_ID symbols to S_GPROC32 // symbols. if (ty.kind() == LF_FUNC_ID || ty.kind() == LF_MFUNC_ID) { bool success = ty.length() >= 12; @@ -732,7 +732,7 @@ void TypeServerSource::loadGHashes() { return; Expected expectedIpi = pdbFile.getPDBIpiStream(); if (auto e = expectedIpi.takeError()) - fatal("error retreiving IPI stream: " + toString(std::move(e))); + fatal("error retrieving IPI stream: " + toString(std::move(e))); ipiSrc->assignGHashesFromVector( GloballyHashedType::hashIds(expectedIpi->typeArray(), ghashes)); -- 2.7.4