[llvm-commits] CVS: llvm/docs/CommandGuide/extract.html
Chris Lattner
lattner at cs.uiuc.edu
Wed Feb 18 10:57:02 PST 2004
Changes in directory llvm/docs/CommandGuide:
extract.html updated: 1.5 -> 1.6
---
Log message:
Extract has new options
---
Diffs of the changes: (+15 -3)
Index: llvm/docs/CommandGuide/extract.html
diff -u llvm/docs/CommandGuide/extract.html:1.5 llvm/docs/CommandGuide/extract.html:1.6
--- llvm/docs/CommandGuide/extract.html:1.5 Tue Oct 7 15:12:03 2003
+++ llvm/docs/CommandGuide/extract.html Wed Feb 18 10:55:29 2004
@@ -35,11 +35,17 @@
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.
-<h3>
-OPTIONS
-</h3>
+<h3>OPTIONS</h3>
<ul>
+<ul>
+ <li> -f
+ <br>
+ Force overwrite. Normally, <tt>extract</tt> will refuse to overwrite an
+ output file that already exists. With this option, <tt>extract</tt>
+ will overwrite the output file and replace it with new bytecode.
+ <p>
+
<li>-func <function>
<br>
Extract the specified function from the LLVM bytecode.
@@ -48,6 +54,12 @@
<li> -help
<br>
Print a summary of command line options.
+ <p>
+
+ <li> -o <filename>
+ <br>
+ Specify the output filename. If filename is "-" (the default), then
+ <tt>extract</tt> sends its output to standard output.
<p>
</ul>
More information about the llvm-commits
mailing list