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

Misha Brukman brukman+llvm at gmail.com
Fri May 1 13:40:51 PDT 2009


Author: brukman
Date: Fri May  1 15:40:51 2009
New Revision: 70569

URL: http://llvm.org/viewvc/llvm-project?rev=70569&view=rev
Log:
HTML-escape '>' as '>' in sample C++ code.

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=70569&r1=70568&r2=70569&view=diff

==============================================================================
--- llvm/trunk/docs/ProgrammersManual.html (original)
+++ llvm/trunk/docs/ProgrammersManual.html Fri May  1 15:40:51 2009
@@ -2097,20 +2097,20 @@
 <div class="doc_text">
 
 <p>In generating IR, you may need some complex types.  If you know these types
-statically, you can use <tt>TypeBuilder<...>::get()</tt>, defined
+statically, you can use <tt>TypeBuilder<...>::get()</tt>, defined
 in <tt>llvm/Support/TypeBuilder.h</tt>, to retrieve them.  <tt>TypeBuilder</tt>
 has two forms depending on whether you're building types for cross-compilation
-or native library use.  <tt>TypeBuilder<T, true></tt> requires
+or native library use.  <tt>TypeBuilder<T, true></tt> requires
 that <tt>T</tt> be independent of the host environment, meaning that it's built
 out of types from
 the <a href="/doxygen/namespacellvm_1_1types.html"><tt>llvm::types</tt></a>
 namespace and pointers, functions, arrays, etc. built of
-those.  <tt>TypeBuilder<T, false></tt> additionally allows native C types
+those.  <tt>TypeBuilder<T, false></tt> additionally allows native C types
 whose size may depend on the host compiler.  For example,</p>
 
 <div class="doc_code">
 <pre>
-FunctionType *ft = TypeBuilder<types::i<8>(types::i<32>*), true>::get();
+FunctionType *ft = TypeBuilder<types::i<8>(types::i<32>*), true>::get();
 </pre>
 </div>
 





More information about the llvm-commits mailing list