diff --git a/docs/CommandGuide/extract.html b/docs/CommandGuide/extract.html index b42aec2a61c..de4655fc99a 100644 --- a/docs/CommandGuide/extract.html +++ b/docs/CommandGuide/extract.html @@ -6,35 +6,33 @@ LLVM: extract tool
-

LLVM: extract tool

+

LLVM: extract tool


-

-NAME -

- -extract +

NAME

+extract

SYNOPSIS

-extract [options] [filename] +extract [options] [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 +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.

-In addition to extracting the bytecode of the specified function, extract will -also remove unreachable global variables, prototypes, and unused types. +In addition to extracting the bytecode of the specified function, +extract will also remove unreachable global variables, prototypes, and +unused types.

-The extract command will read its input from standard input if filename is +The extract command reads its input from standard input if filename is omitted or if filename is -. The output is always written to standard output.

@@ -44,36 +42,26 @@ OPTIONS

EXIT STATUS

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

SEE ALSO

-bugpoint +bugpoint
LLVM Team