diff options
author | Lang Hames <lhames@gmail.com> | 2019-05-22 21:44:46 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2019-05-22 21:44:46 +0000 |
commit | 00be4e68ad6385077ddaf7109911ddc541d2b13c (patch) | |
tree | c7cc0bcd062995d53e912624bd51b83f817a8b80 | |
parent | ed0036796164b3a2a93be8e2707984f57ba94e24 (diff) | |
download | bcm5719-llvm-00be4e68ad6385077ddaf7109911ddc541d2b13c.tar.gz bcm5719-llvm-00be4e68ad6385077ddaf7109911ddc541d2b13c.zip |
[docs] Make a note of the HowToUseLLJIT example in the ORCv2 design doc.
llvm-svn: 361437
-rw-r--r-- | llvm/docs/ORCv2DesignAndImplementation.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/docs/ORCv2DesignAndImplementation.rst b/llvm/docs/ORCv2DesignAndImplementation.rst index 40702af53da..b69cd163bce 100644 --- a/llvm/docs/ORCv2DesignAndImplementation.rst +++ b/llvm/docs/ORCv2DesignAndImplementation.rst @@ -144,6 +144,9 @@ specified before the JIT instance is constructed. For example: // ... +For users wanting to get started with LLJIT a minimal example program can be +found at ``llvm/examples/HowToUseLLJIT``. + Design Overview =============== |