[llvm] a5e15c7 - [docs][JITLink] Sphinx does not like '::' in monotype. Try using a
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 24 02:25:45 PST 2021
Author: Lang Hames
Date: 2021-02-24T21:23:10+11:00
New Revision: a5e15c770646b05150ca9ca5456ac0a00cf1be5d
URL: https://github.com/llvm/llvm-project/commit/a5e15c770646b05150ca9ca5456ac0a00cf1be5d
DIFF: https://github.com/llvm/llvm-project/commit/a5e15c770646b05150ca9ca5456ac0a00cf1be5d.diff
LOG: [docs][JITLink] Sphinx does not like '::' in monotype. Try using a
cpp domain expr instead.
Added:
Modified:
llvm/docs/JITLink.rst
Removed:
################################################################################
diff --git a/llvm/docs/JITLink.rst b/llvm/docs/JITLink.rst
index 6723f55ff66a..477a3f0aff82 100644
--- a/llvm/docs/JITLink.rst
+++ b/llvm/docs/JITLink.rst
@@ -46,11 +46,11 @@ Either way, when an object is emitted the ObjectLinkingLayer constructs a
``LinkGraph`` (see :ref:`Constructing LinkGraphs`) and calls JITLink's
``link`` function.
-``ObjectLinkingLayer`` provides a plugin API, ``ObjectLinkingLayer::Plugin``,
-which users can subclass in order to inspect and modify `LinkGraph`s at link
-time, and react to important JIT events (such as an object being emitted into
-target memory). This enables many features and optimizations that were not
-possible under MCJIT or RuntimeDyld.
+``ObjectLinkingLayer`` provides a plugin API,
+:cpp:expr:`ObjectLinkingLayer::Plugin`, which users can subclass in order to
+inspect and modify `LinkGraph`s at link time, and react to important JIT events
+(such as an object being emitted into target memory). This enables many features
+and optimizations that were not possible under MCJIT or RuntimeDyld.
ObjectLinkingLayer Plugins
--------------------------
More information about the llvm-commits
mailing list