diff --git a/docs/Bugpoint.html b/docs/Bugpoint.html index f60a7ea33af..1f295336706 100644 --- a/docs/Bugpoint.html +++ b/docs/Bugpoint.html @@ -124,7 +124,7 @@ flow graph, to reduce the size of the function as much as possible. Finally, bugpoint deletes any individual LLVM instructions whose absence does not eliminate the failure. At the end, bugpoint should tell you what passes crash, give you a bytecode file, and give you instructions on how to -reproduce the failure with opt, analyze, or llc.
+reproduce the failure with opt or llc. diff --git a/docs/CommandGuide/analyze.pod b/docs/CommandGuide/analyze.pod deleted file mode 100644 index d5eff7ad881..00000000000 --- a/docs/CommandGuide/analyze.pod +++ /dev/null @@ -1,75 +0,0 @@ -=pod - -=head1 NAME - -analyze - LLVM program analyzer - -=head1 SYNOPSIS - -BFirst, LLVM comes in two pieces. The first piece is the LLVM suite. This contains all of the tools, libraries, and header files needed to use the low level virtual machine. It contains an assembler, disassembler, bytecode -analyzer, and bytecode optimizer. It also contains a test suite that can be +analyzer and bytecode optimizer. It also contains a test suite that can be used to test the LLVM tools and the GCC front end.
The second piece is the GCC front end. This component provides a version of @@ -1299,11 +1299,6 @@ following is a brief introduction to the most important tools. More detailed information is in the Command Guide.
More often than not, bugs in the compiler cause it to crash - often due to an -assertion failure of some sort. If you are running opt or -analyze directly, and something crashes, jump to the section on +assertion failure of some sort. If you are running opt +directly, and something crashes, jump to the section on bugs in LLVM passes. Otherwise, the most important piece of the puzzle is to figure out if it is the GCC-based front-end that is buggy or if it's one of the LLVM tools that has problems.
diff --git a/docs/index.html b/docs/index.html index 367296b352f..a36aee9c4ef 100644 --- a/docs/index.html +++ b/docs/index.html @@ -75,7 +75,6 @@ Current tools: llc, lli, llvm-link, - analyze, llvm-nm, llvm-prof, llvmgcc,