[llvm-commits] [llvm] r46997 - /llvm/trunk/docs/TableGenFundamentals.html

Bill Wendling isanbard at gmail.com
Mon Feb 11 23:12:46 PST 2008


Author: void
Date: Tue Feb 12 01:12:46 2008
New Revision: 46997

URL: http://llvm.org/viewvc/llvm-project?rev=46997&view=rev
Log:
More violation fixes.

Modified:
    llvm/trunk/docs/TableGenFundamentals.html

Modified: llvm/trunk/docs/TableGenFundamentals.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/TableGenFundamentals.html?rev=46997&r1=46996&r2=46997&view=diff

==============================================================================
--- llvm/trunk/docs/TableGenFundamentals.html (original)
+++ llvm/trunk/docs/TableGenFundamentals.html Tue Feb 12 01:12:46 2008
@@ -301,9 +301,7 @@
 allows it to describe a wide range of information conveniently and compactly.
 The TableGen types are:</p>
 
-<ul>
 <dl>
-
 <dt><tt><b>bit</b></tt></dt>
   <dd>A 'bit' is a boolean value that can hold either 0 or 1.</dd>
 
@@ -337,7 +335,6 @@
   <dd>This represents a big hunk of text. NOTE: I don't remember why this is
   distinct from string!</dd>
 </dl>
-</ul>
 
 <p>To date, these types have been sufficient for describing things that
 TableGen has been used for, but it is straight-forward to extend this list if
@@ -357,7 +354,6 @@
 natural syntax and flavor for the application.  The current expression forms
 supported include:</p>
 
-<ul>
 <dl>
 <dt><tt>?</tt></dt>
   <dd>uninitialized field</dd>
@@ -401,7 +397,6 @@
   <dd>A string value that is the result of concatenating the 'a' and 'b'
   strings.</dd>
 </dl>
-</ul>
 
 <p>Note that all of the values have rules specifying how they convert to values
 for different types.  These rules allow you to assign a value like "<tt>7</tt>"





More information about the llvm-commits mailing list