[llvm] r276070 - Fixing a few places in this doc which look like obvious typos.

Yunzhong Gao via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 19 17:40:54 PDT 2016


Author: ygao
Date: Tue Jul 19 19:40:54 2016
New Revision: 276070

URL: http://llvm.org/viewvc/llvm-project?rev=276070&view=rev
Log:
Fixing a few places in this doc which look like obvious typos.


Modified:
    llvm/trunk/docs/TableGen/BackEnds.rst

Modified: llvm/trunk/docs/TableGen/BackEnds.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/TableGen/BackEnds.rst?rev=276070&r1=276069&r2=276070&view=diff
==============================================================================
--- llvm/trunk/docs/TableGen/BackEnds.rst (original)
+++ llvm/trunk/docs/TableGen/BackEnds.rst Tue Jul 19 19:40:54 2016
@@ -66,7 +66,7 @@ The macros will be undef'd automatically
 On all LLVM back-ends, the ``llvm-tblgen`` binary will be executed on the root
 TableGen file ``<Target>.td``, which should include all others. This guarantees
 that all information needed is accessible, and that no duplication is needed
-in the TbleGen files.
+in the TableGen files.
 
 CodeEmitter
 -----------
@@ -100,11 +100,12 @@ InstrInfo
 **Purpose**: This tablegen backend is responsible for emitting a description of the target
 instruction set for the code generator. (what are the differences from CodeEmitter?)
 
-**Output**: C++ code with enums and structures representing the register mappings,
+**Output**: C++ code with enums and structures representing the instruction mappings,
 properties, masks, etc.
 
 **Usage**: Both on ``<Target>BaseInstrInfo`` and ``<Target>MCTargetDesc`` (headers
 and source files) with macros defining in which they are for declaration vs.
+initialization issues.
 
 AsmWriter
 ---------
@@ -146,7 +147,7 @@ PseudoLowering
 
 **Purpose**: Generate pseudo instruction lowering.
 
-**Output**: Implements ``ARMAsmPrinter::emitPseudoExpansionLowering()``.
+**Output**: Implements ``<Target>AsmPrinter::emitPseudoExpansionLowering()``.
 
 **Usage**: Included directly into ``<Target>AsmPrinter.cpp``.
 
@@ -160,7 +161,7 @@ conventions supported by this target.
 chained by matching styles, returning false on no match.
 
 **Usage**: Used in ISelLowering and FastIsel as function pointers to
-implementation returned by a CC sellection function.
+implementation returned by a CC selection function.
 
 DAGISel
 -------




More information about the llvm-commits mailing list