summaryrefslogtreecommitdiffstats
path: root/llvm/docs/ProgrammersManual.html
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2009-05-01 20:40:51 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2009-05-01 20:40:51 +0000
commit3268c958407757c38943078319e4cfa71c8e3f80 (patch)
tree48b6b14abf7a932341f00b100b846790b601c3a8 /llvm/docs/ProgrammersManual.html
parent07b7165b50526cb2380765534ba2ba90f5399511 (diff)
downloadbcm5719-llvm-3268c958407757c38943078319e4cfa71c8e3f80.tar.gz
bcm5719-llvm-3268c958407757c38943078319e4cfa71c8e3f80.zip
HTML-escape '>' as '&gt;' in sample C++ code.
llvm-svn: 70569
Diffstat (limited to 'llvm/docs/ProgrammersManual.html')
-rw-r--r--llvm/docs/ProgrammersManual.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html
index 253e8363610..b4aaafac508 100644
--- a/llvm/docs/ProgrammersManual.html
+++ b/llvm/docs/ProgrammersManual.html
@@ -2097,20 +2097,20 @@ GV-&gt;eraseFromParent();
<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&lt;...>::get()</tt>, defined
+statically, you can use <tt>TypeBuilder&lt;...&gt;::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&lt;T, true></tt> requires
+or native library use. <tt>TypeBuilder&lt;T, true&gt;</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&lt;T, false></tt> additionally allows native C types
+those. <tt>TypeBuilder&lt;T, false&gt;</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&lt;types::i&lt;8>(types::i&lt;32>*), true>::get();
+FunctionType *ft = TypeBuilder&lt;types::i&lt;8&gt;(types::i&lt;32&gt;*), true&gt;::get();
</pre>
</div>
OpenPOWER on IntegriCloud