fix formatting and a validation fail
authorGabor Greif <ggreif@gmail.com>
Fri, 26 Mar 2010 19:35:48 +0000 (19:35 +0000)
committerGabor Greif <ggreif@gmail.com>
Fri, 26 Mar 2010 19:35:48 +0000 (19:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99640 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ProgrammersManual.html

index b6c9a8793c218a6c59c28ff4daa6f526c1ef083f..a2d32d4e9857234698c56c70567ff5e45eae1b91 100644 (file)
@@ -1960,12 +1960,12 @@ for (Value::use_iterator i = F-&gt;use_begin(), e = F-&gt;use_end(); i != e; ++i
     errs() &lt;&lt; *Inst &lt;&lt; "\n";
   }
 </pre>
-Note that dereferencing a <tt>Value::use_iterator</tt is not a very cheap
+</div>
+
+Note that dereferencing a <tt>Value::use_iterator</tt> is not a very cheap
 operation. Instead of performing <tt>*i</tt> above several times, consider
 doing it only once in the loop body and reusing its result.
 
-</div>
-
 <p>Alternatively, it's common to have an instance of the <a
 href="/doxygen/classllvm_1_1User.html">User Class</a> and need to know what
 <tt>Value</tt>s are used by it.  The list of all <tt>Value</tt>s used by a