From abeb34a0320b99a43e74363c0c4ddbc6601fbac9 Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Sun, 12 May 2019 22:26:32 +0000 Subject: [PATCH] [ORC] Fix some typos. Patch by Praveen Velliengiri. Thanks Praveen! https://reviews.llvm.org/D61793 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@360546 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ExecutionEngine/Orc/LLJIT.h | 2 -- include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/include/llvm/ExecutionEngine/Orc/LLJIT.h b/include/llvm/ExecutionEngine/Orc/LLJIT.h index 608ebdb4c9b..3104de5e463 100644 --- a/include/llvm/ExecutionEngine/Orc/LLJIT.h +++ b/include/llvm/ExecutionEngine/Orc/LLJIT.h @@ -59,8 +59,6 @@ public: /// Convenience method for defining an absolute symbol. Error defineAbsolute(StringRef Name, JITEvaluatedSymbol Address); - /// Convenience method for defining an - /// Adds an IR module to the given JITDylib. Error addIRModule(JITDylib &JD, ThreadSafeModule TSM); diff --git a/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h b/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h index fdf64d06db1..e5c5feb2281 100644 --- a/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h +++ b/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h @@ -34,8 +34,8 @@ namespace orc { /// Lazy-emitting IR layer. /// -/// This layer accepts LLVM IR Modules (via addModule), but does not -/// immediately emit them the layer below. Instead, emissing to the base layer +/// This layer accepts LLVM IR Modules (via addModule) but does not +/// immediately emit them the layer below. Instead, emission to the base layer /// is deferred until the first time the client requests the address (via /// JITSymbol::getAddress) for a symbol contained in this layer. template class LazyEmittingLayer { -- 2.50.1