Skip to content

Commit

Permalink
fix typos to cycle bots
Browse files Browse the repository at this point in the history
  • Loading branch information
nico committed Dec 4, 2020
1 parent 3898d98 commit c8974af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lld/COFF/DebugTypes.cpp
Expand Up @@ -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;
Expand Down Expand Up @@ -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));

Expand Down

0 comments on commit c8974af

Please sign in to comment.