]> granicus.if.org Git - llvm/commitdiff
[ORC] Fix some typos.
authorLang Hames <lhames@gmail.com>
Sun, 12 May 2019 22:26:32 +0000 (22:26 +0000)
committerLang Hames <lhames@gmail.com>
Sun, 12 May 2019 22:26:32 +0000 (22:26 +0000)
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
include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h

index 608ebdb4c9b66e67436c73f06252fe5e681fbb00..3104de5e4633bf1999cbedefc12fa68fc7197248 100644 (file)
@@ -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);
 
index fdf64d06db1377d3e91cc8e59649faaf7db19845..e5c5feb22812647a6844858b7bad96e1d97f086a 100644 (file)
@@ -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 <typename BaseLayerT> class LazyEmittingLayer {