[llvm-commits] [llvm] r158904 - /llvm/trunk/docs/TableGenFundamentals.rst

Bill Wendling isanbard at gmail.com
Thu Jun 21 00:01:02 PDT 2012


Author: void
Date: Thu Jun 21 02:01:02 2012
New Revision: 158904

URL: http://llvm.org/viewvc/llvm-project?rev=158904&view=rev
Log:
Cleanup some encoding mishaps.

Modified:
    llvm/trunk/docs/TableGenFundamentals.rst

Modified: llvm/trunk/docs/TableGenFundamentals.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/TableGenFundamentals.rst?rev=158904&r1=158903&r2=158904&view=diff
==============================================================================
--- llvm/trunk/docs/TableGenFundamentals.rst (original)
+++ llvm/trunk/docs/TableGenFundamentals.rst Thu Jun 21 02:01:02 2012
@@ -253,9 +253,9 @@
 Class type
     Specifying a class name in a type context means that the defined value must
     be a subclass of the specified class.  This is useful in conjunction with
-    the **``list``** type, for example, to constrain the elements of the list to
-    a common base class (e.g., a ``**list**<Register>`` can only contain
-    definitions derived from the "``Register``" class).
+    the ``list`` type, for example, to constrain the elements of the list to a
+    common base class (e.g., a ``list<Register>`` can only contain definitions
+    derived from the "``Register``" class).
 
 ``dag``
     This type represents a nestable directed graph of elements.
@@ -354,13 +354,13 @@
 ``str1#str2``
     "#" (paste) is a shorthand for !strconcat.  It may concatenate things that
     are not quoted strings, in which case an implicit !cast<string> is done on
-    the operand of the paste.</dd>
+    the operand of the paste.
 
 ``!cast<type>(a)``
     A symbol of type *type* obtained by looking up the string 'a' in the symbol
     table.  If the type of 'a' does not match *type*, TableGen aborts with an
     error. !cast<string> is a special case in that the argument must be an
-    object defined by a 'def' construct.</dd>
+    object defined by a 'def' construct.
 
 ``!subst(a, b, c)``
     If 'a' and 'b' are of string type or are symbol references, substitute 'b'





More information about the llvm-commits mailing list