docs: Fix long standing linking antipattern.
[oota-llvm.git] / docs / programming.rst
index add923f899539ac92d5515633d72931cb3586f5e..aa51130533b5373bae28b6c658ca7fe6192be2b3 100644 (file)
@@ -1,33 +1,46 @@
-.. _programming:
-
 Programming Documentation
 =========================
 
 .. toctree::
    :hidden:
 
+   Atomics
    CodingStandards
+   CommandLine
+   CompilerWriterInfo
+   ExtendingLLVM
+   HowToSetUpLLVMStyleRTTI
+   ProgrammersManual
 
-* `LLVM Language Reference Manual <LangRef.html>`_
+* :doc:`LLVM Language Reference Manual <LangRef>`
 
   Defines the LLVM intermediate representation and the assembly form of the
   different nodes.
 
-* `The LLVM Programmers Manual <ProgrammersManual.html>`_
+* :doc:`Atomics`
+
+  Information about LLVM's concurrency model.
+
+* :doc:`ProgrammersManual`
 
   Introduction to the general layout of the LLVM sourcebase, important classes
   and APIs, and some tips & tricks.
 
-* `CommandLine library Reference Manual <CommandLine.html>`_
+* :doc:`CommandLine`
 
   Provides information on using the command line parsing library.
 
-* :ref:`coding_standards`
+* :doc:`CodingStandards`
 
   Details the LLVM coding standards and provides useful information on writing
   efficient C++ code.
 
-* `Extending LLVM <ExtendingLLVM.html>`_
+* :doc:`HowToSetUpLLVMStyleRTTI`
+
+  How to make ``isa<>``, ``dyn_cast<>``, etc. available for clients of your
+  class hierarchy.
+
+* :doc:`ExtendingLLVM`
 
   Look here to see how to add instructions and intrinsics to LLVM.
 
@@ -37,3 +50,7 @@ Programming Documentation
   (`tarball <http://llvm.org/doxygen/doxygen.tar.gz>`_)
 
 * `ViewVC Repository Browser <http://llvm.org/viewvc/>`_
+
+* :doc:`CompilerWriterInfo`
+
+  A list of helpful links for compiler writers.