@@ -1210,7 +1210,7 @@ static void disassembleObject(const Target *TheTarget, const ObjectFile *Obj,
1210
1210
1211
1211
// Create a mapping from virtual address to section. An empty section can
1212
1212
// cause more than one section at the same address. Use a stable sort to
1213
- // stabalize the output.
1213
+ // stabilize the output.
1214
1214
std::vector<std::pair<uint64_t , SectionRef>> SectionAddresses;
1215
1215
for (SectionRef Sec : Obj->sections ())
1216
1216
SectionAddresses.emplace_back (Sec.getAddress (), Sec);
@@ -1244,7 +1244,7 @@ static void disassembleObject(const Target *TheTarget, const ObjectFile *Obj,
1244
1244
}
1245
1245
1246
1246
// Sort all the symbols, this allows us to use a simple binary search to find
1247
- // Multiple symbols can have the same address. Use a stable sort to stabalize
1247
+ // Multiple symbols can have the same address. Use a stable sort to stabilize
1248
1248
// the output.
1249
1249
StringSet<> FoundDisasmSymbolSet;
1250
1250
for (std::pair<const SectionRef, SectionSymbolsTy> &SecSyms : AllSymbols)
@@ -1430,7 +1430,7 @@ static void disassembleObject(const Target *TheTarget, const ObjectFile *Obj,
1430
1430
// them. Otherwise we might want to skip zero bytes we see.
1431
1431
if (!DisassembleZeroes) {
1432
1432
uint64_t MaxOffset = End - Index;
1433
- // For -reloc: print zero blocks patched by relocations, so that
1433
+ // For -- reloc: print zero blocks patched by relocations, so that
1434
1434
// relocations can be shown in the dump.
1435
1435
if (RelCur != RelEnd)
1436
1436
MaxOffset = RelCur->getOffset () - Index;
0 commit comments