Removed the -mode option.

Fixed some grammar, spelling, and punctuation.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9178 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John Criswell 2003-10-16 20:15:17 +00:00
parent 394f2eb03d
commit 589d91fa72

View File

@ -24,8 +24,7 @@ the resultant bytecode file. If any of the passes crash, or if they produce an
LLVM module which is not verifiable, bugpoint enters "crash debugging mode". LLVM module which is not verifiable, bugpoint enters "crash debugging mode".
Otherwise, <tt>bugpoint</tt> tries to run the resultant program with a code Otherwise, <tt>bugpoint</tt> tries to run the resultant program with a code
generator. If the code generated program does not match the reference output, generator. If the code generated program does not match the reference output,
it enters "miscompilation debugging mode". If the <tt>-mode</tt> option is it enters "miscompilation debugging mode".
specified, <tt>bugpoint</tt> enters "code generator debugging mode".
<h4>Crash debugging mode</h4> <h4>Crash debugging mode</h4>
@ -56,7 +55,7 @@ TODO
<li><tt>-disable-(adce,dce,final-cleanup,simplifycfg)</tt> <li><tt>-disable-(adce,dce,final-cleanup,simplifycfg)</tt>
<br> <br>
<tt>bugpoint</tt> uses several passes internally for cleanup routines to <tt>bugpoint</tt> uses several passes internally for cleanup routines to
reduce the size of the program. If you're trying to find a bug in out reduce the size of the program. If you're trying to find a bug in one
of these passes, <tt>bugpoint</tt> may crash. These options tell of these passes, <tt>bugpoint</tt> may crash. These options tell
<tt>bugpoint</tt> not use the specified passes. <tt>bugpoint</tt> not use the specified passes.
<p> <p>
@ -81,13 +80,6 @@ TODO
<tt>opt -load &lt;plugin.so&gt; -help</tt> <tt>opt -load &lt;plugin.so&gt; -help</tt>
<p> <p>
<li> <tt>-mode=(compile|codegen)</tt>
<br>
Specify whether <tt>bugpoint</tt> should operate in compilation
debugging mode (detecting miscompilations and optimizer crashes), or in
code generator debugging mode.
<p>
<li> <tt>-output &lt;filename&gt;</tt> <li> <tt>-output &lt;filename&gt;</tt>
<br> <br>
Specify a reference output for the &lt;stdout&gt; file stream. Specify a reference output for the &lt;stdout&gt; file stream.
@ -96,7 +88,7 @@ TODO
<li> <tt>-run-(lli|jit|llc|cbe)</tt> <li> <tt>-run-(lli|jit|llc|cbe)</tt>
<br> <br>
Specify which code generator <tt>bugpoint</tt> should use to run the Specify which code generator <tt>bugpoint</tt> should use to run the
program with. program.
<p> <p>
</ul> </ul>
@ -107,7 +99,7 @@ If <tt>bugpoint</tt> succeeds in finding a problem, it will exit with 0.
Otherwise, if an error occurs, it will exit with a non-zero value. Otherwise, if an error occurs, it will exit with a non-zero value.
<h3>SEE ALSO</h3> <h3>SEE ALSO</h3>
<a href="opt.html"><tt>opt</tt></a> <a href="opt.html"><tt>opt</tt></a>,
<a href="analyze.html"><tt>analyze</tt></a> <a href="analyze.html"><tt>analyze</tt></a>
<HR> <HR>