diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-18 16:55:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-18 16:55:29 +0000 |
commit | 7f059ebd7857bd1653e7bfcbf012cb76ce79b4d7 (patch) | |
tree | f5f2a6757e1e4a03d7729cf1136cb91a476a3444 /llvm/docs/CommandGuide/extract.html | |
parent | 3b203f56bc4970bf089b256aa44394eee3ec5d0a (diff) | |
download | bcm5719-llvm-7f059ebd7857bd1653e7bfcbf012cb76ce79b4d7.tar.gz bcm5719-llvm-7f059ebd7857bd1653e7bfcbf012cb76ce79b4d7.zip |
Extract has new options
llvm-svn: 11581
Diffstat (limited to 'llvm/docs/CommandGuide/extract.html')
-rw-r--r-- | llvm/docs/CommandGuide/extract.html | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/llvm/docs/CommandGuide/extract.html b/llvm/docs/CommandGuide/extract.html index 1e2301d1eb1..b840168a6e1 100644 --- a/llvm/docs/CommandGuide/extract.html +++ b/llvm/docs/CommandGuide/extract.html @@ -35,11 +35,17 @@ unused types. 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. @@ -49,6 +55,12 @@ OPTIONS <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> <h3> |