[llvm] f6d6b98 - [docs][ORC] Try to fix 'title-level inconsistent' error in ORCv2.rst.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 16 21:47:09 PST 2020
Author: Lang Hames
Date: 2020-01-16T21:46:35-08:00
New Revision: f6d6b98eec41e3f73862bcbae6a0771dafcecfd8
URL: https://github.com/llvm/llvm-project/commit/f6d6b98eec41e3f73862bcbae6a0771dafcecfd8
DIFF: https://github.com/llvm/llvm-project/commit/f6d6b98eec41e3f73862bcbae6a0771dafcecfd8.diff
LOG: [docs][ORC] Try to fix 'title-level inconsistent' error in ORCv2.rst.
Added:
Modified:
llvm/docs/ORCv2.rst
Removed:
################################################################################
diff --git a/llvm/docs/ORCv2.rst b/llvm/docs/ORCv2.rst
index 5e70f0396bc6..488ce262ee30 100644
--- a/llvm/docs/ORCv2.rst
+++ b/llvm/docs/ORCv2.rst
@@ -523,7 +523,7 @@ How-tos
=======
How to manage symbol strings
-############################
+----------------------------
Symbol strings in ORC are uniqued to improve lookup performance, reduce memory
overhead, and allow symbol names to function as efficient keys. To get the
@@ -556,7 +556,7 @@ will perform both jobs for you:
auto Sym = ES.lookup({&ES.getMainJITDylib()}, Mangle("main"));
How to create JITDylibs and set up linkage relationships
-########################################################
+--------------------------------------------------------
In ORC, all symbol definitions reside in JITDylibs. JITDylibs are created by
calling the ``ExecutionSession::createJITDylib`` method with a unique name:
@@ -579,7 +579,7 @@ default. A reference to it can be obtained by calling
auto &MainJD = ES.getMainJITDylib();
How to use ThreadSafeModule and ThreadSafeContext
-#################################################
+-------------------------------------------------
ThreadSafeModule and ThreadSafeContext are wrappers around Modules and
LLVMContexts respectively. A ThreadSafeModule is a pair of a
More information about the llvm-commits
mailing list