diff options
Diffstat (limited to 'llvm/docs/ProgrammersManual.rst')
-rw-r--r-- | llvm/docs/ProgrammersManual.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst index ff3f7e93915..f140cf509d2 100644 --- a/llvm/docs/ProgrammersManual.rst +++ b/llvm/docs/ProgrammersManual.rst @@ -2546,9 +2546,9 @@ generate significantly more efficient code. We have also found that a large amount of our usage of type hierarchies fits better with tag-based pattern matching rather than dynamic dispatch across a common interface. Within LLVM we have built custom helpers to facilitate this design. See this document's -section on `isa and dyn_cast <isa>`_ and our `detailed document -<http://llvm.org/docs/HowToSetUpLLVMStyleRTTI.html>`_ which describes how you -can implement this pattern for use with the LLVM helpers. +section on :ref:`isa and dyn_cast <isa>` and our :doc:`detailed document +<HowToSetUpLLVMStyleRTTI>` which describes how you can implement this +pattern for use with the LLVM helpers. .. _coreclasses: |