summaryrefslogtreecommitdiff
path: root/docs/CodeGenerator.rst
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-11-29 16:12:13 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-11-29 16:12:13 +0000
commitb129b9b617ea27df7ed176818ea9cb93d5d3b79d (patch)
tree3cdb74d5d0b2cc169b111ae1e40e8acfbfe488d0 /docs/CodeGenerator.rst
parent5c5e230ac7ab03937f685baaf78525fd2b8154f1 (diff)
downloadllvm-b129b9b617ea27df7ed176818ea9cb93d5d3b79d.tar.gz
llvm-b129b9b617ea27df7ed176818ea9cb93d5d3b79d.tar.bz2
llvm-b129b9b617ea27df7ed176818ea9cb93d5d3b79d.tar.xz
Documentation: formatting improvements
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168897 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodeGenerator.rst')
-rw-r--r--docs/CodeGenerator.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/CodeGenerator.rst b/docs/CodeGenerator.rst
index 11174b7bee..e2bbdb548c 100644
--- a/docs/CodeGenerator.rst
+++ b/docs/CodeGenerator.rst
@@ -172,7 +172,7 @@ architecture. These target descriptions often have a large amount of common
information (e.g., an ``add`` instruction is almost identical to a ``sub``
instruction). In order to allow the maximum amount of commonality to be
factored out, the LLVM code generator uses the
-`TableGen <TableGenFundamentals.html>`_ tool to describe big chunks of the
+:doc:`TableGen <TableGenFundamentals>` tool to describe big chunks of the
target machine, which allows the use of domain-specific and target-specific
abstractions to reduce the amount of repetition.
@@ -230,7 +230,7 @@ for structures, the alignment requirements for various data types, the size of
pointers in the target, and whether the target is little-endian or
big-endian.
-.. _targetlowering:
+.. _TargetLowering:
The ``TargetLowering`` class
----------------------------
@@ -874,7 +874,7 @@ found, the elements are converted to scalars ("scalarizing").
A target implementation tells the legalizer which types are supported (and which
register class to use for them) by calling the ``addRegisterClass`` method in
-its TargetLowering constructor.
+its ``TargetLowering`` constructor.
.. _legalize operations:
.. _Legalizer: