1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

[TableGen] Clean up documentation toctrees; clarify two paragraphs.

Differential Revision: https://reviews.llvm.org/D90804
This commit is contained in:
Paul C. Anagnostopoulos 2020-11-04 18:48:53 -05:00
parent 81d1ab5e65
commit a49fe8891e
2 changed files with 7 additions and 10 deletions

View File

@ -27,8 +27,8 @@ header file (``record.h``) and/or the Doxygen documentation.
This document assumes that you have read the :doc:`TableGen Programmer's
Reference <./ProgRef>`, which provides a detailed reference for coding
TableGen source files. This document and the data structure comments will be
improved over time.
TableGen source files. For a description of the existing backends, see
:doc:`TableGen BackEnds <./BackEnds>`.
Data Structures
===============
@ -738,7 +738,9 @@ The ``PrintRecords`` Backend
The TableGen command option ``--print-records`` invokes a simple backend
that prints all the classes and records defined in the source files. This is
the default backend option. The output looks like this:
the default backend option. The format of the output is guaranteed to be
constant over time, so that the output can be compared in tests. The output
looks like this:
.. code-block:: text
@ -776,7 +778,8 @@ The ``PrintDetailedRecords`` Backend
The TableGen command option ``--print-detailed-records`` invokes a backend
that prints all the global variables, classes, and records defined in the
source files. The output looks like this.
source files. The format of the output is *not* guaranteed to be constant
over time. The output looks like this.
.. code-block:: text

View File

@ -7,12 +7,6 @@ TableGen Programmer's Reference
.. contents::
:local:
.. toctree::
:hidden:
BackEnds
BackGuide
Introduction
============