<tt> stuff

simplify a bit

llvm-svn: 8933
This commit is contained in:
Chris Lattner 2003-10-07 19:48:25 +00:00
parent 352d29cb3b
commit 4e6cc153a8
1 changed files with 14 additions and 26 deletions

View File

@ -6,35 +6,33 @@ LLVM: extract tool
<body> <body>
<center> <center>
<h1>LLVM: extract tool</h1> <h1>LLVM: <tt>extract</tt> tool</h1>
</center> </center>
<HR> <HR>
<h3> <h3>NAME</h3>
NAME <tt>extract</tt>
</h3>
extract
<h3> <h3>
SYNOPSIS SYNOPSIS
</h3> </h3>
extract [options] [filename] <tt>extract [options] [filename]</tt>
<h3> <h3>
DESCRIPTION DESCRIPTION
</h3> </h3>
The extract command takes the name of a function and extracts it from the The <tt>extract</tt> command takes the name of a function and extracts it from
specified LLVM bytecode file. It is primarily used as a debugging tool to the specified LLVM bytecode file. It is primarily used as a debugging tool to
reduce test cases from larger programs that are triggering a bug. reduce test cases from larger programs that are triggering a bug.
<p> <p>
In addition to extracting the bytecode of the specified function, extract will In addition to extracting the bytecode of the specified function,
also remove unreachable global variables, prototypes, and unused types. <tt>extract</tt> will also remove unreachable global variables, prototypes, and
unused types.
<p> <p>
The extract command will read its input from standard input if filename is The <tt>extract</tt> command reads its input from standard input if filename is
omitted or if filename is -. The output is always written to standard output. omitted or if filename is -. The output is always written to standard output.
<h3> <h3>
@ -44,36 +42,26 @@ OPTIONS
<ul> <ul>
<li>-func &lt;function&gt; <li>-func &lt;function&gt;
<br> <br>
Extract function from the LLVM bytecode. Extract the specified function from the LLVM bytecode.
<p> <p>
<li> -help <li> -help
<br> <br>
Print a summary of command line options. Print a summary of command line options.
<p> <p>
<li> -stats
<br>
Print statistics.
<p>
<li> -time-passes
<br>
Record the amount of time needed for each pass and print it to standard
error.
</ul> </ul>
<h3> <h3>
EXIT STATUS EXIT STATUS
</h3> </h3>
If extract succeeds, it will exit with 0. Otherwise, if an error occurs, it If <tt>extract</tt> succeeds, it will exit with 0. Otherwise, if an error
will exit with a non-zero value. occurs, it will exit with a non-zero value.
<h3> <h3>
SEE ALSO SEE ALSO
</h3> </h3>
bugpoint <a href="bugpoint.html"><tt>bugpoint</tt></a>
<HR> <HR>
<a href="http://llvm.cs.uiuc.edu">LLVM Team</a> <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>