From: John Criswell Date: Wed, 17 Sep 2003 14:11:24 +0000 (+0000) Subject: Renamed the link page to llvmlink.html X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;ds=sidebyside;h=58ebcd0d82c8f9d6bf3ca3de9385fa576513d5f1;p=oota-llvm.git Renamed the link page to llvmlink.html Added initial pages for the extract and llvm-link commands. Reworded the description of the -load option for analyze to hopefully make it more clear. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8575 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CommandGuide/analyze.html b/docs/CommandGuide/analyze.html index 15a06392057..25b93eb38d3 100644 --- a/docs/CommandGuide/analyze.html +++ b/docs/CommandGuide/analyze.html @@ -62,8 +62,8 @@ OPTIONS the analyze program after being loaded.

After being loaded, additional command line options are made available - for running additional analysis passes. Use analyse -load - <plugin.so> -help to list the new list of available analysis + for running the passes made available by plugin.so. Use analyse -load + <plugin.so> -help to see the new list of available analysis passes.

diff --git a/docs/CommandGuide/extract.html b/docs/CommandGuide/extract.html new file mode 100644 index 00000000000..275b9b1e0c6 --- /dev/null +++ b/docs/CommandGuide/extract.html @@ -0,0 +1,74 @@ + + +extract + + + + +

+

Low Level Virtual Machine

+
+
+ +

+NAME +

+ +extract + +

+SYNOPSIS +

+ +extract [options] <filename> [filename ...] +

+DESCRIPTION +

+ +The extract command takes the name of a function and extracts it from 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. + +

+OPTIONS +

+ + + +

+EXIT STATUS +

+ +If extract succeeds, it will exit with 0. Otherwise, if an error occurs, it +will exit with a non-zero value. + +

+SEE ALSO +

+bugpoint + +
+LLVM Team + + + diff --git a/docs/CommandGuide/index.html b/docs/CommandGuide/index.html index 022e9eefb32..cb6d3d2b839 100644 --- a/docs/CommandGuide/index.html +++ b/docs/CommandGuide/index.html @@ -41,7 +41,7 @@ Optimize an LLVM bytecode file.

-

link +
llvm-link
Link several LLVM bytecode files together into one LLVM bytecode file. diff --git a/docs/CommandGuide/llvm-link.html b/docs/CommandGuide/llvm-link.html new file mode 100644 index 00000000000..a503c2e0dfe --- /dev/null +++ b/docs/CommandGuide/llvm-link.html @@ -0,0 +1,91 @@ + + +llvm-link + + + + +
+

Low Level Virtual Machine

+
+
+ +

+NAME +

+ +llvm-link + +

+SYNOPSIS +

+ +llvm-link [options] <filename> [filename ...] +

+DESCRIPTION +

+ +The llvm-link command takes several LLVM bytecode files and links them together into a single LLVM bytecode file. + +

+OPTIONS +

+ + + +

+EXIT STATUS +

+ +If llvm-link succeeds, it will exit with 0. Otherwise, if an error occurs, it +will exit with a non-zero value. + +

+SEE ALSO +

+llvm-dis, lli + +
+LLVM Team + + +