Skip to content

Commit ddb2e34

Browse files
committed
[lld/mac] Fix comment typos to cycle bots
1 parent 71da928 commit ddb2e34

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lld/MachO/ICF.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ void ICF::run() {
449449

450450
ConcatInputSection *beginIsec = icfInputs[begin];
451451
for (size_t i = begin + 1; i < end; ++i) {
452-
// Skip keepUnique inputs when using safe_thunks (already handeled above)
452+
// Skip keepUnique inputs when using safe_thunks (already handled above)
453453
if (useSafeThunks && icfInputs[i]->keepUnique) {
454454
// Assert keepUnique sections are either small or replaced with thunks.
455455
assert(!icfInputs[i]->live ||

lld/MachO/ObjC.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ bool ObjcCategoryMerger::collectCategoryWriterInfoFromCategory(
632632
tryGetDefinedAtIsecOffset(catInfo.catBodyIsec, catLayout.nameOffset);
633633

634634
if (!catNameSym) {
635-
// This is an unhandeled case where the category name is not a symbol but
635+
// This is an unhandled case where the category name is not a symbol but
636636
// instead points to an CStringInputSection (that doesn't have any symbol)
637637
// TODO: Find a small repro and either fix or add a test case for this
638638
// scenario

0 commit comments

Comments
 (0)