diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-11-05 02:05:35 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-11-05 02:05:35 +0000 |
commit | 90a52145aba097dffcf92080975749778201f16c (patch) | |
tree | 7f8ec3e257e41003f23384aa07c433d3b309de26 /docs/Passes.html | |
parent | b8fc650b486ce57b08f0fcbcfb7dde41a78450c0 (diff) | |
download | external_llvm-90a52145aba097dffcf92080975749778201f16c.zip external_llvm-90a52145aba097dffcf92080975749778201f16c.tar.gz external_llvm-90a52145aba097dffcf92080975749778201f16c.tar.bz2 |
Bringing Passes.html up-to-date with the deletion of the
-emitbitcode option and the addition of -preverify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43696 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Passes.html')
-rw-r--r-- | docs/Passes.html | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/Passes.html b/docs/Passes.html index 320f8e8..3492a27 100644 --- a/docs/Passes.html +++ b/docs/Passes.html @@ -179,7 +179,7 @@ perl -e '$/ = undef; for (split(/\n/, <>)) { s:^ *///? ?::; print " <p>\n" if ! <tr><th>Option</th><th>Name</th></tr> <tr><td><a href="#deadarghaX0r">-deadarghaX0r</a></td><td>Dead Argument Hacking (BUGPOINT USE ONLY; DO NOT USE)</td></tr> <tr><td><a href="#extract-blocks">-extract-blocks</a></td><td>Extract Basic Blocks From Module (for bugpoint use)</td></tr> -<tr><td><a href="#emitbitcode">-emitbitcode</a></td><td>Bitcode Writer</td></tr> +<tr><td><a href="#preverify">-preverify</a></td><td>Preliminary module verification</td></tr> <tr><td><a href="#verify">-verify</a></td><td>Module Verifier</td></tr> <tr><td><a href="#view-cfg">-view-cfg</a></td><td>View CFG of function</td></tr> <tr><td><a href="#view-cfg-only">-view-cfg-only</a></td><td>View CFG of function (with no function bodies)</td></tr> @@ -1826,10 +1826,18 @@ if (i == j) <!-------------------------------------------------------------------------- --> <div class="doc_subsection"> - <a name="emitbitcode">Bitcode Writer</a> + <a name="preverify">Preliminary module verification</a> </div> <div class="doc_text"> - <p>Yet to be written.</p> + <p> + Ensures that the module is in the form required by the <a + href="#verifier">Module Verifier</a> pass. + </p> + + <p> + Running the verifier runs this pass automatically, so there should be no need + to use it directly. + </p> </div> <!-------------------------------------------------------------------------- --> |