[llvm-commits] CVS: llvm/docs/Bugpoint.html GettingStarted.html HowToSubmitABug.html index.html

Reid Spencer reid at x10sys.com
Sun Aug 27 17:34:35 PDT 2006



Changes in directory llvm/docs:

Bugpoint.html updated: 1.8 -> 1.9
GettingStarted.html updated: 1.143 -> 1.144
HowToSubmitABug.html updated: 1.26 -> 1.27
index.html updated: 1.57 -> 1.58
---
Log message:

Excise references to the now defunct "analyze" tool. Merge descriptions
where appropriate.


---
Diffs of the changes:  (+15 -19)

 Bugpoint.html        |    4 ++--
 GettingStarted.html  |   21 +++++++++------------
 HowToSubmitABug.html |    6 +++---
 index.html           |    3 +--
 4 files changed, 15 insertions(+), 19 deletions(-)


Index: llvm/docs/Bugpoint.html
diff -u llvm/docs/Bugpoint.html:1.8 llvm/docs/Bugpoint.html:1.9
--- llvm/docs/Bugpoint.html:1.8	Tue Aug 15 12:38:36 2006
+++ llvm/docs/Bugpoint.html	Sun Aug 27 19:34:18 2006
@@ -124,7 +124,7 @@
 <tt>bugpoint</tt> deletes any individual LLVM instructions whose absence does
 not eliminate the failure.  At the end, <tt>bugpoint</tt> should tell you what
 passes crash, give you a bytecode file, and give you instructions on how to
-reproduce the failure with <tt>opt</tt>, <tt>analyze</tt>, or <tt>llc</tt>.</p>
+reproduce the failure with <tt>opt</tt> or <tt>llc</tt>.</p>
 
 </div>
 
@@ -237,7 +237,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2006/08/15 17:38:36 $
+  Last modified: $Date: 2006/08/28 00:34:18 $
 </address>
 
 </body>


Index: llvm/docs/GettingStarted.html
diff -u llvm/docs/GettingStarted.html:1.143 llvm/docs/GettingStarted.html:1.144
--- llvm/docs/GettingStarted.html:1.143	Mon Aug 14 15:51:35 2006
+++ llvm/docs/GettingStarted.html	Sun Aug 27 19:34:18 2006
@@ -81,7 +81,7 @@
 <p>First, 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.</p>
 
 <p>The second piece is the GCC front end.  This component provides a version of
@@ -1299,11 +1299,6 @@
 information is in the <a href="CommandGuide/index.html">Command Guide</a>.</p>
 
 <dl>
-  <dt><tt><b>analyze</b></tt></dt>
-  <dd><tt>analyze</tt> is used to run a specific
-  analysis on an input LLVM bytecode file and print out the results.  It is
-  primarily useful for debugging analyses, or familiarizing yourself with
-  what an analysis does.</dd>
 
   <dt><tt><b>bugpoint</b></tt></dt>
   <dd><tt>bugpoint</tt> is used to debug
@@ -1395,11 +1390,13 @@
   </dd>
 
   <dt><tt><b>opt</b></tt></dt>
-  <dd><tt>opt</tt> reads LLVM bytecode, applies a
-  series of LLVM to LLVM transformations (which are specified on the command
-  line), and then outputs the resultant bytecode.  The '<tt>opt --help</tt>'
-  command is a good way to get a list of the program transformations
-  available in LLVM.</dd>
+  <dd><tt>opt</tt> reads LLVM bytecode, applies a series of LLVM to LLVM 
+  transformations (which are specified on the command line), and then outputs 
+  the resultant bytecode.  The '<tt>opt --help</tt>' command is a good way to 
+  get a list of the program transformations available in LLVM.<br/>
+  <dd><tt>opt</tt> can also be used to run a specific analysis on an input 
+  LLVM bytecode file and print out the results.  It is primarily useful for 
+  debugging analyses, or familiarizing yourself with what an analysis does.</dd>
 </dl>
 </div>
 
@@ -1677,7 +1674,7 @@
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.x10sys.com/rspencer/">Reid Spencer</a><br>
   <a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2006/08/14 20:51:35 $
+  Last modified: $Date: 2006/08/28 00:34:18 $
 </address>
 </body>
 </html>


Index: llvm/docs/HowToSubmitABug.html
diff -u llvm/docs/HowToSubmitABug.html:1.26 llvm/docs/HowToSubmitABug.html:1.27
--- llvm/docs/HowToSubmitABug.html:1.26	Mon Mar 13 23:39:39 2006
+++ llvm/docs/HowToSubmitABug.html	Sun Aug 27 19:34:18 2006
@@ -82,8 +82,8 @@
 <div class="doc_text">
 
 <p>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 <tt><b>opt</b></tt> or
-<tt><b>analyze</b></tt> directly, and something crashes, jump to the section on
+assertion failure of some sort.  If you are running <tt><b>opt</b></tt> 
+directly, and something crashes, jump to the section on
 <a href="#passes">bugs in LLVM passes</a>.  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.</p>
@@ -352,7 +352,7 @@
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.org">The LLVM Compiler Infrastructure</a>
   <br>
-  Last modified: $Date: 2006/03/14 05:39:39 $
+  Last modified: $Date: 2006/08/28 00:34:18 $
 </address>
 
 </body>


Index: llvm/docs/index.html
diff -u llvm/docs/index.html:1.57 llvm/docs/index.html:1.58
--- llvm/docs/index.html:1.57	Mon Aug 14 13:21:53 2006
+++ llvm/docs/index.html	Sun Aug 27 19:34:18 2006
@@ -75,7 +75,6 @@
  <a href="CommandGuide/html/llc.html">llc</a>,
  <a href="CommandGuide/html/lli.html">lli</a>,
  <a href="CommandGuide/html/llvm-link.html">llvm-link</a>,
- <a href="CommandGuide/html/analyze.html">analyze</a>,
  <a href="CommandGuide/html/llvm-nm.html">llvm-nm</a>,
  <a href="CommandGuide/html/llvm-prof.html">llvm-prof</a>,
  <a href="CommandGuide/html/llvmgcc.html">llvmgcc</a>,
@@ -264,6 +263,6 @@
   src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
 
   <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2006/08/14 18:21:53 $
+  Last modified: $Date: 2006/08/28 00:34:18 $
 </address>
 






More information about the llvm-commits mailing list