[PATCH] D61793: Fixing typos
Praveen velliengiri via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri May 10 10:18:43 PDT 2019
pree-jackie created this revision.
pree-jackie added a reviewer: lhames.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
My first commit to llvm, this is merely to check whether I setup my development environment correctly. Plus, it also fixes some typos.
Repository:
rL LLVM
https://reviews.llvm.org/D61793
Files:
llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
Index: llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
===================================================================
--- llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
+++ llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
@@ -34,8 +34,8 @@
/// 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 <typename BaseLayerT> class LazyEmittingLayer {
Index: llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
===================================================================
--- llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
+++ llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
@@ -59,8 +59,6 @@
/// 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);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61793.199033.patch
Type: text/x-patch
Size: 1334 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190510/53997e50/attachment.bin>
More information about the llvm-commits
mailing list