[llvm] d4addec - [ORC][LLJIT] Fix typo in assert message.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 22 16:00:54 PDT 2023
Author: Lang Hames
Date: 2023-09-22T16:00:47-07:00
New Revision: d4addec4224ac10f6e9b372704e22574c07b0a1f
URL: https://github.com/llvm/llvm-project/commit/d4addec4224ac10f6e9b372704e22574c07b0a1f
DIFF: https://github.com/llvm/llvm-project/commit/d4addec4224ac10f6e9b372704e22574c07b0a1f.diff
LOG: [ORC][LLJIT] Fix typo in assert message.
Added:
Modified:
llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
Removed:
################################################################################
diff --git a/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp b/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
index 4cab0f28aee725f..01ce7a4c64ec16e 100644
--- a/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
@@ -1147,7 +1147,7 @@ Expected<JITDylibSP> ExecutorNativePlatform::operator()(LLJIT &J) {
if (!ObjLinkingLayer)
return make_error<StringError>(
- "SetUpTargetPlatform requires ObjectLinkingLayer",
+ "ExecutorNativePlatform requires ObjectLinkingLayer",
inconvertibleErrorCode());
std::unique_ptr<MemoryBuffer> RuntimeArchiveBuffer;
More information about the llvm-commits
mailing list