[lld] 3eb0973 - [lld/mac] Fix (adorable!) typo to cycle bots
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 15 11:34:00 PDT 2024
Author: Nico Weber
Date: 2024-04-15T14:33:53-04:00
New Revision: 3eb097339e5fb78e91182674e891445ebe5a845b
URL: https://github.com/llvm/llvm-project/commit/3eb097339e5fb78e91182674e891445ebe5a845b
DIFF: https://github.com/llvm/llvm-project/commit/3eb097339e5fb78e91182674e891445ebe5a845b.diff
LOG: [lld/mac] Fix (adorable!) typo to cycle bots
Added:
Modified:
lld/MachO/ObjC.cpp
Removed:
################################################################################
diff --git a/lld/MachO/ObjC.cpp b/lld/MachO/ObjC.cpp
index 5902b82d30f556..c28f2b42a72ce8 100644
--- a/lld/MachO/ObjC.cpp
+++ b/lld/MachO/ObjC.cpp
@@ -458,7 +458,7 @@ class ObjcCategoryMerger {
const PointerListInfo &ptrList);
Defined *emitCategory(const ClassExtensionInfo &extInfo);
- Defined *emitCatListEntrySec(const std::string &forCateogryName,
+ Defined *emitCatListEntrySec(const std::string &forCategoryName,
const std::string &forBaseClassName,
ObjFile *objFile);
Defined *emitCategoryBody(const std::string &name, const Defined *nameSym,
@@ -878,7 +878,7 @@ void ObjcCategoryMerger::emitAndLinkPointerList(
// This method creates an __objc_catlist ConcatInputSection with a single slot
Defined *
-ObjcCategoryMerger::emitCatListEntrySec(const std::string &forCateogryName,
+ObjcCategoryMerger::emitCatListEntrySec(const std::string &forCategoryName,
const std::string &forBaseClassName,
ObjFile *objFile) {
uint32_t sectionSize = target->wordSize;
@@ -894,7 +894,7 @@ ObjcCategoryMerger::emitCatListEntrySec(const std::string &forCateogryName,
newCatList->parent = infoCategoryWriter.catListInfo.outputSection;
std::string catSymName = "<__objc_catlist slot for merged category ";
- catSymName += forBaseClassName + "(" + forCateogryName + ")>";
+ catSymName += forBaseClassName + "(" + forCategoryName + ")>";
Defined *catListSym = make<Defined>(
newStringData(catSymName.c_str()), /*file=*/objFile, newCatList,
@@ -1069,7 +1069,7 @@ void ObjcCategoryMerger::collectAndValidateCategoriesData() {
off += target->wordSize) {
Defined *categorySym = tryGetDefinedAtIsecOffset(catListCisec, off);
assert(categorySym &&
- "Failed to get a valid cateogry at __objc_catlit offset");
+ "Failed to get a valid category at __objc_catlit offset");
// We only support ObjC categories (no swift + @objc)
// TODO: Support swift + @objc categories also
More information about the llvm-commits
mailing list