[llvm-commits] [llvm] r99640 - /llvm/trunk/docs/ProgrammersManual.html

Gabor Greif ggreif at gmail.com
Fri Mar 26 12:35:48 PDT 2010


Author: ggreif
Date: Fri Mar 26 14:35:48 2010
New Revision: 99640

URL: http://llvm.org/viewvc/llvm-project?rev=99640&view=rev
Log:
fix formatting and a validation fail

Modified:
    llvm/trunk/docs/ProgrammersManual.html

Modified: llvm/trunk/docs/ProgrammersManual.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.html?rev=99640&r1=99639&r2=99640&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.html (original)
+++ llvm/trunk/docs/ProgrammersManual.html Fri Mar 26 14:35:48 2010
@@ -1960,12 +1960,12 @@
     errs() << *Inst << "\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





More information about the llvm-commits mailing list