docs: Fix Sphinx warning over Atomics.rst.
[oota-llvm.git] / docs / programming.rst
1 .. _programming:
2
3 Programming Documentation
4 =========================
5
6 .. toctree::
7    :hidden:
8
9    CodingStandards
10    CommandLine
11    Atomics
12
13 * `LLVM Language Reference Manual <LangRef.html>`_
14
15   Defines the LLVM intermediate representation and the assembly form of the
16   different nodes.
17
18 * :ref:`atomics`
19
20   Information about LLVM's concurrency model.
21
22 * `The LLVM Programmers Manual <ProgrammersManual.html>`_
23
24   Introduction to the general layout of the LLVM sourcebase, important classes
25   and APIs, and some tips & tricks.
26
27 * :ref:`commandline`
28
29   Provides information on using the command line parsing library.
30
31 * :ref:`coding_standards`
32
33   Details the LLVM coding standards and provides useful information on writing
34   efficient C++ code.
35
36 * `Extending LLVM <ExtendingLLVM.html>`_
37
38   Look here to see how to add instructions and intrinsics to LLVM.
39
40 * `Doxygen generated documentation <http://llvm.org/doxygen/>`_
41
42   (`classes <http://llvm.org/doxygen/inherits.html>`_)
43   (`tarball <http://llvm.org/doxygen/doxygen.tar.gz>`_)
44
45 * `ViewVC Repository Browser <http://llvm.org/viewvc/>`_