fix typos to cycle bots
authorNico Weber <thakis@chromium.org>
Fri, 4 Dec 2020 15:18:44 +0000 (10:18 -0500)
committerNico Weber <thakis@chromium.org>
Fri, 4 Dec 2020 15:18:44 +0000 (10:18 -0500)
lld/COFF/DebugTypes.cpp

index 029da96..9db61fc 100644 (file)
@@ -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<pdb::TpiStream &> 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));