Minor cleanup related to my latest scheduler changes.
[oota-llvm.git] / docs / TableGenFundamentals.html
index 2f0c4ae6ec299397ebb338681f3d1f8580352717..f09e0d06420e5f99f44db1bec1fabb7683f5f06c 100644 (file)
@@ -422,7 +422,7 @@ class.  This operation is analogous to $(foreach) in GNU make.</dd>
   <dd>'b' if the result of 'int' or 'bit' operator 'a' is nonzero,
       'c' otherwise.</dd>
 <dt><tt>!eq(a,b)</tt></dt>
-  <dd>Integer one if string a is equal to string b, zero otherwise.  This
+  <dd>'bit 1' if string a is equal to string b, 0 otherwise.  This
       only operates on string, int and bit objects.  Use !cast&lt;string&gt; to
       compare other types of objects.</dd>
 </dl>
@@ -813,7 +813,8 @@ end-user to factor out commonality from the records.</p>
 apply, and one or more records to bind the values in.  Here are some
 examples:</p>
 
-<pre class="doc_code">
+<div class="doc_code">
+<pre>
 <b>let</b> isTerminator = 1, isReturn = 1, isBarrier = 1, hasCtrlDep = 1 <b>in</b>
   <b>def</b> RET : I&lt;0xC3, RawFrm, (outs), (ins), "ret", [(X86retflag 0)]&gt;;
 
@@ -830,6 +831,7 @@ examples:</p>
                         "call\t{*}$dst", []&gt;;
   }
 </pre>
+</div>
 
 <p>File-scope "let" expressions are often useful when a couple of definitions
 need to be added to several records, and the records do not otherwise need to be