[llvm] 7c57a37 - [JITLink][aarch64] Fix typo in error message.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 7 15:33:09 PDT 2022
Author: Lang Hames
Date: 2022-10-07T14:56:45-07:00
New Revision: 7c57a37c305debd55b9acc1e91205a438c960c7c
URL: https://github.com/llvm/llvm-project/commit/7c57a37c305debd55b9acc1e91205a438c960c7c
DIFF: https://github.com/llvm/llvm-project/commit/7c57a37c305debd55b9acc1e91205a438c960c7c.diff
LOG: [JITLink][aarch64] Fix typo in error message.
Added:
Modified:
llvm/include/llvm/ExecutionEngine/JITLink/aarch64.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/ExecutionEngine/JITLink/aarch64.h b/llvm/include/llvm/ExecutionEngine/JITLink/aarch64.h
index 76aaadd8816f6..e3bf62aee118b 100644
--- a/llvm/include/llvm/ExecutionEngine/JITLink/aarch64.h
+++ b/llvm/include/llvm/ExecutionEngine/JITLink/aarch64.h
@@ -238,7 +238,7 @@ inline Error applyFixup(LinkGraph &G, Block &B, const Edge &E) {
default:
return make_error<JITLinkError>(
"In graph " + G.getName() + ", section " + B.getSection().getName() +
- "unsupported edge kind" + getEdgeKindName(E.getKind()));
+ " unsupported edge kind " + getEdgeKindName(E.getKind()));
}
return Error::success();
More information about the llvm-commits
mailing list