[llvm-commits] [llvm] r168897 - /llvm/trunk/docs/CodeGenerator.rst

Dmitri Gribenko gribozavr at gmail.com
Thu Nov 29 08:12:13 PST 2012


Author: gribozavr
Date: Thu Nov 29 10:12:13 2012
New Revision: 168897

URL: http://llvm.org/viewvc/llvm-project?rev=168897&view=rev
Log:
Documentation: formatting improvements

Modified:
    llvm/trunk/docs/CodeGenerator.rst

Modified: llvm/trunk/docs/CodeGenerator.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodeGenerator.rst?rev=168897&r1=168896&r2=168897&view=diff
==============================================================================
--- llvm/trunk/docs/CodeGenerator.rst (original)
+++ llvm/trunk/docs/CodeGenerator.rst Thu Nov 29 10:12:13 2012
@@ -172,7 +172,7 @@
 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 @@
 pointers in the target, and whether the target is little-endian or
 big-endian.
 
-.. _targetlowering:
+.. _TargetLowering:
 
 The ``TargetLowering`` class
 ----------------------------
@@ -874,7 +874,7 @@
 
 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:





More information about the llvm-commits mailing list