summaryrefslogtreecommitdiff
path: root/docs/CodeGenerator.rst
diff options
context:
space:
mode:
authorSean Silva <chisophugis@gmail.com>2014-04-08 21:06:22 +0000
committerSean Silva <chisophugis@gmail.com>2014-04-08 21:06:22 +0000
commit0a50cec3cb9c2b442e0671212c941b36eda870e3 (patch)
treec63bdae960183ad8bb50e98fc15944651cccceb6 /docs/CodeGenerator.rst
parentc6a7502a803ceca5d18801a7598d303f7f5bfa0f (diff)
downloadllvm-0a50cec3cb9c2b442e0671212c941b36eda870e3.tar.gz
llvm-0a50cec3cb9c2b442e0671212c941b36eda870e3.tar.bz2
llvm-0a50cec3cb9c2b442e0671212c941b36eda870e3.tar.xz
[docs] Fix up some links to the preferred style.
:doc:`...` and :ref:`...` links help Sphinx keep track the dependencies between documents and ensure that they are not pointing to nowhere. Raw HTML links work just fine and are easier for people less familiar with reST/Sphinx. They are easy to change over to the :doc:/:ref: style after the fact so this is not a problem. This commit doesn't fix all of them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205792 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodeGenerator.rst')
-rw-r--r--docs/CodeGenerator.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/CodeGenerator.rst b/docs/CodeGenerator.rst
index 58906c2749..81fa26438b 100644
--- a/docs/CodeGenerator.rst
+++ b/docs/CodeGenerator.rst
@@ -70,7 +70,7 @@ different pieces of this will be useful to you. In any case, you should be
familiar with the `target description`_ and `machine code representation`_
classes. If you want to add a backend for a new target, you will need to
`implement the target description`_ classes for your new target and understand
-the `LLVM code representation <LangRef.html>`_. If you are interested in
+the :doc:`LLVM code representation <LangRef>`. If you are interested in
implementing a new `code generation algorithm`_, it should only depend on the
target-description and machine code representation classes, ensuring that it is
portable.