[llvm-commits] [www-releases] r145587 - in /www-releases/trunk/3.0/docs: CommandGuide/index.html TestingGuide.html index.html tutorial/LangImpl3.html tutorial/LangImpl5.html tutorial/OCamlLangImpl3.html tutorial/OCamlLangImpl5.html

Tanya Lattner tonic at nondot.org
Thu Dec 1 09:14:04 PST 2011


Author: tbrethou
Date: Thu Dec  1 11:14:04 2011
New Revision: 145587

URL: http://llvm.org/viewvc/llvm-project?rev=145587&view=rev
Log:
Update doc links for release.

Modified:
    www-releases/trunk/3.0/docs/CommandGuide/index.html
    www-releases/trunk/3.0/docs/TestingGuide.html
    www-releases/trunk/3.0/docs/index.html
    www-releases/trunk/3.0/docs/tutorial/LangImpl3.html
    www-releases/trunk/3.0/docs/tutorial/LangImpl5.html
    www-releases/trunk/3.0/docs/tutorial/OCamlLangImpl3.html
    www-releases/trunk/3.0/docs/tutorial/OCamlLangImpl5.html

Modified: www-releases/trunk/3.0/docs/CommandGuide/index.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.0/docs/CommandGuide/index.html?rev=145587&r1=145586&r2=145587&view=diff
==============================================================================
--- www-releases/trunk/3.0/docs/CommandGuide/index.html (original)
+++ www-releases/trunk/3.0/docs/CommandGuide/index.html Thu Dec  1 11:14:04 2011
@@ -32,44 +32,44 @@
 
 <ul>
 
-<li><a href="/cmds/llvm-as.html"><b>llvm-as</b></a> -
+<li><a href="/html/llvm-as.html"><b>llvm-as</b></a> -
     assemble a human-readable .ll file into bytecode</li>
 
-<li><a href="/cmds/llvm-dis.html"><b>llvm-dis</b></a> -
+<li><a href="/html/llvm-dis.html"><b>llvm-dis</b></a> -
     disassemble a bytecode file into a human-readable .ll file</li>
 
-<li><a href="/cmds/opt.html"><b>opt</b></a> -
+<li><a href="/htmp/opt.html"><b>opt</b></a> -
     run a series of LLVM-to-LLVM optimizations on a bytecode file</li>
 
-<li><a href="/cmds/llc.html"><b>llc</b></a> -
+<li><a href="/html/llc.html"><b>llc</b></a> -
     generate native machine code for a bytecode file</li>
 
-<li><a href="/cmds/lli.html"><b>lli</b></a> -
+<li><a href="/htmp/lli.html"><b>lli</b></a> -
     directly run a program compiled to bytecode using a JIT compiler or
     interpreter</li>
 
-<li><a href="/cmds/llvm-link.html"><b>llvm-link</b></a> -
+<li><a href="/html/llvm-link.html"><b>llvm-link</b></a> -
     link several bytecode files into one</li>
 
-<li><a href="/cmds/llvm-ar.html"><b>llvm-ar</b></a> -
+<li><a href="/html/llvm-ar.html"><b>llvm-ar</b></a> -
     archive bytecode files</li>
 
-<li><a href="/cmds/llvm-ranlib.html"><b>llvm-ranlib</b></a> -
+<li><a href="/html/llvm-ranlib.html"><b>llvm-ranlib</b></a> -
     create an index for archives made with llvm-ar</li>
 
-<li><a href="/cmds/llvm-nm.html"><b>llvm-nm</b></a> -
+<li><a href="/html/llvm-nm.html"><b>llvm-nm</b></a> -
     print out the names and types of symbols in a bytecode file</li>
 
-<li><a href="/cmds/llvm-prof.html"><b>llvm-prof</b></a> -
+<li><a href="/html/llvm-prof.html"><b>llvm-prof</b></a> -
     format raw `<tt>llvmprof.out</tt>' data into a human-readable report</li>
 
-<li><a href="/cmds/llvm-ld.html"><b>llvm-ld</b></a> -
+<li><a href="/html/llvm-ld.html"><b>llvm-ld</b></a> -
     general purpose linker with loadable runtime optimization support</li>
 
-<li><a href="/cmds/llvm-config.html"><b>llvm-config</b></a> -
+<li><a href="/html/llvm-config.html"><b>llvm-config</b></a> -
     print out LLVM compilation options, libraries, etc. as configured</li>
 
-<li><a href="/cmds/llvm-diff.html"><b>llvm-diff</b></a> -
+<li><a href="/html/llvm-diff.html"><b>llvm-diff</b></a> -
     structurally compare two modules</li>
 
 </ul>
@@ -87,13 +87,13 @@
 
 <ul>
 
-<li><a href="/cmds/bugpoint.html"><b>bugpoint</b></a> -
+<li><a href="/html/bugpoint.html"><b>bugpoint</b></a> -
     automatic test-case reducer</li>
 
-<li><a href="/cmds/llvm-extract.html"><b>llvm-extract</b></a> -
+<li><a href="/html/llvm-extract.html"><b>llvm-extract</b></a> -
     extract a function from an LLVM bytecode file</li>
 
-<li><a href="/cmds/llvm-bcanalyzer.html"><b>llvm-bcanalyzer</b></a> -
+<li><a href="/html/llvm-bcanalyzer.html"><b>llvm-bcanalyzer</b></a> -
     bytecode analyzer (analyzes the binary encoding itself, not the program it
     represents)</li>
 
@@ -109,11 +109,11 @@
 <div>
 <ul>
 
-<li><a href="/cmds/FileCheck.html"><b>FileCheck</b></a> -
+<li><a href="/html/FileCheck.html"><b>FileCheck</b></a> -
     Flexible file verifier used extensively by the testing harness</li>
-<li><a href="/cmds/tblgen.html"><b>tblgen</b></a> -
+<li><a href="/html/tblgen.html"><b>tblgen</b></a> -
     target description reader and generator</li>
-<li><a href="/cmds/lit.html"><b>lit</b></a> -
+<li><a href="/html/lit.html"><b>lit</b></a> -
     LLVM Integrated Tester, for running tests</li>
 
 </ul>

Modified: www-releases/trunk/3.0/docs/TestingGuide.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.0/docs/TestingGuide.html?rev=145587&r1=145586&r2=145587&view=diff
==============================================================================
--- www-releases/trunk/3.0/docs/TestingGuide.html (original)
+++ www-releases/trunk/3.0/docs/TestingGuide.html Thu Dec  1 11:14:04 2011
@@ -515,7 +515,7 @@
    tool was designed to help with these problems.</p>
 
 <p>FileCheck (whose basic command line arguments are described in <a
-   href="http://llvm.org/cmds/FileCheck.html">the FileCheck man page</a> is
+   href="/CommandGuide/html/FileCheck.html">the FileCheck man page</a> is
    designed to read a file to check from standard input, and the set of things
    to verify from a file specified as a command line argument.  A simple example
    of using FileCheck from a RUN line looks like this:</p>

Modified: www-releases/trunk/3.0/docs/index.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.0/docs/index.html?rev=145587&r1=145586&r2=145587&view=diff
==============================================================================
--- www-releases/trunk/3.0/docs/index.html (original)
+++ www-releases/trunk/3.0/docs/index.html Thu Dec  1 11:14:04 2011
@@ -81,22 +81,22 @@
 <li><a href="CommandGuide/index.html">LLVM Command Guide</a> - A reference
 manual for the LLVM command line utilities ("man" pages for LLVM tools).<br>
 Current tools:
- <a href="/cmds/llvm-ar.html">llvm-ar</a>,
- <a href="/cmds/llvm-as.html">llvm-as</a>,
- <a href="/cmds/llvm-dis.html">llvm-dis</a>,
- <a href="/cmds/llvm-extract.html">llvm-extract</a>,
- <a href="/cmds/llvm-ld.html">llvm-ld</a>,
- <a href="/cmds/llvm-link.html">llvm-link</a>,
- <a href="/cmds/llvm-nm.html">llvm-nm</a>,
- <a href="/cmds/llvm-prof.html">llvm-prof</a>,
- <a href="/cmds/llvm-ranlib.html">llvm-ranlib</a>,
- <a href="/cmds/opt.html">opt</a>,
- <a href="/cmds/llc.html">llc</a>,
- <a href="/cmds/lli.html">lli</a>,
- <a href="/cmds/llvmgcc.html">llvm-gcc</a>,
- <a href="/cmds/llvmgxx.html">llvm-g++</a>,
- <a href="/cmds/bugpoint.html">bugpoint</a>,
- <a href="/cmds/llvm-bcanalyzer.html">llvm-bcanalyzer</a>,
+ <a href="/CommandGuide/html/llvm-ar.html">llvm-ar</a>,
+ <a href="/CommandGuide/html/llvm-as.html">llvm-as</a>,
+ <a href="/CommandGuide/html/llvm-dis.html">llvm-dis</a>,
+ <a href="/CommandGuide/html/llvm-extract.html">llvm-extract</a>,
+ <a href="/CommandGuide/html/llvm-ld.html">llvm-ld</a>,
+ <a href="/CommandGuide/html/llvm-link.html">llvm-link</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/llvm-ranlib.html">llvm-ranlib</a>,
+ <a href="/CommandGuide/html/opt.html">opt</a>,
+ <a href="/CommandGuide/html/llc.html">llc</a>,
+ <a href="/CommandGuide/html/lli.html">lli</a>,
+ <a href="/CommandGuide/html/llvmgcc.html">llvm-gcc</a>,
+ <a href="/CommandGuide/html/llvmgxx.html">llvm-g++</a>,
+ <a href="/CommandGuide/html/bugpoint.html">bugpoint</a>,
+ <a href="/CommandGuide/html/llvm-bcanalyzer.html">llvm-bcanalyzer</a>,
 </li>
 
 <li><a href="Passes.html">LLVM's Analysis and Transform Passes</a> - A list of

Modified: www-releases/trunk/3.0/docs/tutorial/LangImpl3.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.0/docs/tutorial/LangImpl3.html?rev=145587&r1=145586&r2=145587&view=diff
==============================================================================
--- www-releases/trunk/3.0/docs/tutorial/LangImpl3.html (original)
+++ www-releases/trunk/3.0/docs/tutorial/LangImpl3.html Thu Dec  1 11:14:04 2011
@@ -665,7 +665,7 @@
 Here is the complete code listing for our running example, enhanced with the
 LLVM code generator.    Because this uses the LLVM libraries, we need to link
 them in.  To do this, we use the <a 
-href="http://llvm.org/cmds/llvm-config.html">llvm-config</a> tool to inform
+href="../CommandGuide/html/llvm-config.html">llvm-config</a> tool to inform
 our makefile/command line about which options to use:</p>
 
 <div class="doc_code">

Modified: www-releases/trunk/3.0/docs/tutorial/LangImpl5.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.0/docs/tutorial/LangImpl5.html?rev=145587&r1=145586&r2=145587&view=diff
==============================================================================
--- www-releases/trunk/3.0/docs/tutorial/LangImpl5.html (original)
+++ www-releases/trunk/3.0/docs/tutorial/LangImpl5.html Thu Dec  1 11:14:04 2011
@@ -278,7 +278,7 @@
 </div>
 
 <p>To visualize the control flow graph, you can use a nifty feature of the LLVM
-'<a href="http://llvm.org/cmds/opt.html">opt</a>' tool.  If you put this LLVM IR
+'<a href="../CommandGuide/html/opt.html">opt</a>' tool.  If you put this LLVM IR
 into "t.ll" and run "<tt>llvm-as < t.ll | opt -analyze -view-cfg</tt>", <a
 href="../ProgrammersManual.html#ViewGraph">a window will pop up</a> and you'll
 see this graph:</p>

Modified: www-releases/trunk/3.0/docs/tutorial/OCamlLangImpl3.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.0/docs/tutorial/OCamlLangImpl3.html?rev=145587&r1=145586&r2=145587&view=diff
==============================================================================
--- www-releases/trunk/3.0/docs/tutorial/OCamlLangImpl3.html (original)
+++ www-releases/trunk/3.0/docs/tutorial/OCamlLangImpl3.html Thu Dec  1 11:14:04 2011
@@ -616,7 +616,7 @@
 Here is the complete code listing for our running example, enhanced with the
 LLVM code generator.    Because this uses the LLVM libraries, we need to link
 them in.  To do this, we use the <a
-href="http://llvm.org/cmds/llvm-config.html">llvm-config</a> tool to inform
+href="../CommandGuide/html/llvm-config.html">llvm-config</a> tool to inform
 our makefile/command line about which options to use:</p>
 
 <div class="doc_code">

Modified: www-releases/trunk/3.0/docs/tutorial/OCamlLangImpl5.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.0/docs/tutorial/OCamlLangImpl5.html?rev=145587&r1=145586&r2=145587&view=diff
==============================================================================
--- www-releases/trunk/3.0/docs/tutorial/OCamlLangImpl5.html (original)
+++ www-releases/trunk/3.0/docs/tutorial/OCamlLangImpl5.html Thu Dec  1 11:14:04 2011
@@ -261,7 +261,7 @@
 </div>
 
 <p>To visualize the control flow graph, you can use a nifty feature of the LLVM
-'<a href="http://llvm.org/cmds/opt.html">opt</a>' tool.  If you put this LLVM IR
+'<a href="../CommandGuide/html/opt.html">opt</a>' tool.  If you put this LLVM IR
 into "t.ll" and run "<tt>llvm-as < t.ll | opt -analyze -view-cfg</tt>", <a
 href="../ProgrammersManual.html#ViewGraph">a window will pop up</a> and you'll
 see this graph:</p>





More information about the llvm-commits mailing list