From: Chris Lattner Date: Tue, 7 Oct 2003 20:17:24 +0000 (+0000) Subject: TTify, add links between pages X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=26814d0dfecc3a84462ddad68c6775d483a56d38;p=oota-llvm.git TTify, add links between pages git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8939 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CommandGuide/llvm-as.html b/docs/CommandGuide/llvm-as.html index 8406d6eff53..5cb575cd1fc 100644 --- a/docs/CommandGuide/llvm-as.html +++ b/docs/CommandGuide/llvm-as.html @@ -5,37 +5,29 @@ LLVM: llvm-as tool -
-

LLVM: llvm-as tool

-
+

LLVM: llvm-as tool


-

-NAME -

+

NAME

+llvm-as -llvm-as +

SYNOPSIS

+llvm-as [options] [filename] -

-SYNOPSIS -

+

DESCRIPTION

-llvm-as [options] [filename] -

-DESCRIPTION -

- -The llvm-as command is the LLVM assembler. It reads a file containing human -readable LLVM assembly language, translates it to LLVM bytecode, and writes the -result into a file or to standard output. +The llvm-as command is the LLVM assembler. It reads a file containing +human readable LLVM assembly language, translates it to LLVM bytecode, and +writes the result into a file or to standard output.

-If filename is omitted or is -, then llvm-as reads its input from standard -input. +If filename is omitted or is -, then llvm-as reads its input from +standard input.

-If an output file is not specified with the -o option, then llvm-as sends its -output to a file or standard output by the following logic: +If an output file is not specified with the -o option, then +llvm-as sends its output to a file or standard output by the following +logic:

-

-OPTIONS -

+

OPTIONS

-

-EXIT STATUS -

+

EXIT STATUS

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

SEE ALSO

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

-SEE ALSO -

-llvm-dis
Maintained by the LLVM Team. diff --git a/docs/CommandGuide/llvm-dis.html b/docs/CommandGuide/llvm-dis.html index 15e8bf6bffd..7211206d300 100644 --- a/docs/CommandGuide/llvm-dis.html +++ b/docs/CommandGuide/llvm-dis.html @@ -5,39 +5,30 @@ LLVM: llvm-dis tool -
-

LLVM: llvm-dis tool

-
+

LLVM: llvm-dis tool


-

-NAME -

+

NAME

+llvm-dis -llvm-dis +

SYNOPSIS

+llvm-dis [options] [filename] -

-SYNOPSIS -

+

DESCRIPTION

-llvm-dis [options] [filename] -

-DESCRIPTION -

- -The llvm-dis command is the LLVM disassembler. It takes an LLVM bytecode file -and converts it into LLVM assembly language or C source code with equivalent -functionality. +The llvm-dis command is the LLVM disassembler. It takes an LLVM +bytecode file and converts it into LLVM assembly language or C source code with +equivalent functionality.

-If filename is omitted, llvm-dis reads its input from standard input. +If filename is omitted, llvm-dis reads its input from standard input.

-The default output file for llvm-dis is determined by the following logic: +The default output file for llvm-dis is determined by the following logic:

-

-OPTIONS -

+

OPTIONS

-

-EXIT STATUS -

+

EXIT STATUS

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

SEE ALSO

-

-SEE ALSO -

-llvm-as +llvm-as
Maintained by the LLVM Team. diff --git a/docs/CommandGuide/opt.html b/docs/CommandGuide/opt.html index ace6a7ac989..e71c24c5998 100644 --- a/docs/CommandGuide/opt.html +++ b/docs/CommandGuide/opt.html @@ -1,56 +1,46 @@ - -LLVM: opt tool - +LLVM: opt tool -
-

LLVM: opt tool

-
+

LLVM: opt tool


-

-NAME -

+

NAME

+opt -opt +

SYNOPSIS

+opt [options] [filename] -

-SYNOPSIS -

+

DESCRIPTION

-opt [options] [filename] -

-DESCRIPTION -

- -The opt command is the LLVM optimizer. It takes LLVM bytecode as input, runs -the specified optimizations on it, and then outputs the optimized LLVM -bytecode. +The opt command is the modular LLVM optimizer. It takes LLVM bytecode +as input, runs the specified optimizations on it, and then outputs the optimized +LLVM bytecode.

-The optimizations available via opt depend upon what libraries were linked -into it as well as any additional libraries that have been loaded with the --load option. Use the -help option to determine what optimizations you can use. +The optimizations available via opt depend upon what libraries were +linked into it as well as any additional libraries that have been loaded with +the -load option. Use the -help option to determine what +optimizations you can use.

-If no filename is specified on the command line, opt reads its input from -standard input. +If no filename is specified on the command line, opt reads its input +from standard input.

-If an output filename is not specified with the -o option, opt writes its -output to the standard output. -

-OPTIONS -

+If an output filename is not specified with the -o option, opt +writes its output to the standard output. + + +

OPTIONS

-

-EXIT STATUS -

+

EXIT STATUS

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

SEE ALSO

-

-SEE ALSO -

-analyze +analyze
Maintained by the LLVM Team.