summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2010-08-06 02:13:25 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2010-08-06 02:13:25 +0000
commitc3086bad02cf2b4b7d34631d02f3b1cf1e9599b2 (patch)
tree7aad43afad29d28eb1682a228343e98f0152808a /docs
parent9c3806461c0afc9aef30a5516fbf66f672460008 (diff)
downloadllvm-c3086bad02cf2b4b7d34631d02f3b1cf1e9599b2.tar.gz
llvm-c3086bad02cf2b4b7d34631d02f3b1cf1e9599b2.tar.bz2
llvm-c3086bad02cf2b4b7d34631d02f3b1cf1e9599b2.tar.xz
Fix missing </a> tag error introduced by addition of LowerAtomic pass.
While at it, fix all other HTML validation errors in docs/Passes.html. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110428 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/Passes.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/Passes.html b/docs/Passes.html
index cafa99cf2c..4d465108e7 100644
--- a/docs/Passes.html
+++ b/docs/Passes.html
@@ -680,15 +680,13 @@ perl -e '$/ = undef; for (split(/\n/, <>)) { s:^ *///? ?::; print " <p>\n" if !
<a name="print-dbginfo">-print-dbginfo: Print debug info in human readable form</a>
</div>
<div class="doc_text">
- <p>Pass that prints instructions, and associated debug info:
+ <p>Pass that prints instructions, and associated debug info:</p>
<ul>
<li>source/line/col information</li>
<li>original variable name</li>
<li>original type name</li>
</ul>
-
- </p>
</div>
<!-------------------------------------------------------------------------- -->
@@ -1550,7 +1548,7 @@ if (X &lt; 3) {</pre>
<!-------------------------------------------------------------------------- -->
<div class="doc_subsection">
- <a name="loweratomic">-loweratomic: Lower atomic intrinsics
+ <a name="loweratomic">-loweratomic: Lower atomic intrinsics</a>
</div>
<div class="doc_text">
<p>
@@ -1960,12 +1958,13 @@ if (X &lt; 3) {</pre>
<a name="strip-debug-declare">-strip-debug-declare: Strip all llvm.dbg.declare intrinsics</a>
</div>
<div class="doc_text">
- <p>This pass implements code stripping. Specifically, it can delete:
+ <p>This pass implements code stripping. Specifically, it can delete:</p>
<ul>
<li>names for virtual registers</li>
<li>symbols for internal globals and functions</li>
<li>debug information</li>
</ul>
+ <p>
Note that this transformation makes code much less readable, so it should
only be used in situations where the 'strip' utility would be used, such as
reducing code size or making it harder to reverse engineer code.
@@ -1977,12 +1976,13 @@ if (X &lt; 3) {</pre>
<a name="strip-nondebug">-strip-nondebug: Strip all symbols, except dbg symbols, from a module</a>
</div>
<div class="doc_text">
- <p>This pass implements code stripping. Specifically, it can delete:
+ <p>This pass implements code stripping. Specifically, it can delete:</p>
<ul>
<li>names for virtual registers</li>
<li>symbols for internal globals and functions</li>
<li>debug information</li>
</ul>
+ <p>
Note that this transformation makes code much less readable, so it should
only be used in situations where the 'strip' utility would be used, such as
reducing code size or making it harder to reverse engineer code.