[llvm] b2e7527 - [ORC] Fix some typos in comments in MachOPlatform.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 16 16:14:23 PST 2023
Author: Lang Hames
Date: 2023-11-16T16:14:15-08:00
New Revision: b2e752731856dc0dcd8948cf5518b8ca62d91c83
URL: https://github.com/llvm/llvm-project/commit/b2e752731856dc0dcd8948cf5518b8ca62d91c83
DIFF: https://github.com/llvm/llvm-project/commit/b2e752731856dc0dcd8948cf5518b8ca62d91c83.diff
LOG: [ORC] Fix some typos in comments in MachOPlatform.
Added:
Modified:
llvm/lib/ExecutionEngine/Orc/MachOPlatform.cpp
Removed:
################################################################################
diff --git a/llvm/lib/ExecutionEngine/Orc/MachOPlatform.cpp b/llvm/lib/ExecutionEngine/Orc/MachOPlatform.cpp
index 6d8e2396137337b..164adce444a1580 100644
--- a/llvm/lib/ExecutionEngine/Orc/MachOPlatform.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/MachOPlatform.cpp
@@ -469,11 +469,11 @@ MachOPlatform::MachOPlatform(
// itself (to build the allocation actions that will call the registration
// functions). Further complicating the situation (a) the graph containing
// the registration functions is allowed to depend on other graphs (e.g. the
- // graph containing the ORC runtime RTTI support) so we need to handle with
- // an unknown set of dependencies during bootstrap, and (b) these graphs may
+ // graph containing the ORC runtime RTTI support) so we need to handle an
+ // unknown set of dependencies during bootstrap, and (b) these graphs may
// be linked concurrently if the user has installed a concurrent dispatcher.
//
- // We satisfy these constraint by implementing a bootstrap phase during which
+ // We satisfy these constraints by implementing a bootstrap phase during which
// allocation actions generated by MachOPlatform are appended to a list of
// deferred allocation actions, rather than to the graphs themselves. At the
// end of the bootstrap process the deferred actions are attached to a final
More information about the llvm-commits
mailing list