[llvm-commits] [www-releases] r157282 - in /www-releases/trunk/3.1/docs: TestingGuide.html tutorial/LangImpl3.html tutorial/LangImpl5.html tutorial/OCamlLangImpl3.html tutorial/OCamlLangImpl5.html

Tanya Lattner tonic at nondot.org
Tue May 22 13:54:26 PDT 2012


Author: tbrethou
Date: Tue May 22 15:54:25 2012
New Revision: 157282

URL: http://llvm.org/viewvc/llvm-project?rev=157282&view=rev
Log:
Fix up links

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

Modified: www-releases/trunk/3.1/docs/TestingGuide.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.1/docs/TestingGuide.html?rev=157282&r1=157281&r2=157282&view=diff
==============================================================================
--- www-releases/trunk/3.1/docs/TestingGuide.html (original)
+++ www-releases/trunk/3.1/docs/TestingGuide.html Tue May 22 15:54:25 2012
@@ -306,7 +306,7 @@
   get running. The standard <tt>lit.local.cfg</tt> simply specifies which files
   to look in for tests. Any directory that contains only directories does not
   need the <tt>lit.local.cfg</tt> file. Read the
-  <a href="http://llvm.org/cmds/lit.html">Lit documentation</a> for more
+  <a href="http://llvm.org/releases/3.1/docs/CommandGuide/html/lit.html">Lit documentation</a> for more
   information. </p>
 
   <p>The <tt>llvm-runtests</tt> function looks at each file that is passed to
@@ -458,7 +458,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="http://llvm.org/releases/3.1/docs/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.1/docs/tutorial/LangImpl3.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.1/docs/tutorial/LangImpl3.html?rev=157282&r1=157281&r2=157282&view=diff
==============================================================================
--- www-releases/trunk/3.1/docs/tutorial/LangImpl3.html (original)
+++ www-releases/trunk/3.1/docs/tutorial/LangImpl3.html Tue May 22 15:54:25 2012
@@ -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="http://llvm.org/releases/3.1/docs/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.1/docs/tutorial/LangImpl5.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.1/docs/tutorial/LangImpl5.html?rev=157282&r1=157281&r2=157282&view=diff
==============================================================================
--- www-releases/trunk/3.1/docs/tutorial/LangImpl5.html (original)
+++ www-releases/trunk/3.1/docs/tutorial/LangImpl5.html Tue May 22 15:54:25 2012
@@ -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="http://llvm.org/releases/3.1/docs/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.1/docs/tutorial/OCamlLangImpl3.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.1/docs/tutorial/OCamlLangImpl3.html?rev=157282&r1=157281&r2=157282&view=diff
==============================================================================
--- www-releases/trunk/3.1/docs/tutorial/OCamlLangImpl3.html (original)
+++ www-releases/trunk/3.1/docs/tutorial/OCamlLangImpl3.html Tue May 22 15:54:25 2012
@@ -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="http://llvm.org/releases/3.1/docs/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.1/docs/tutorial/OCamlLangImpl5.html
URL: http://llvm.org/viewvc/llvm-project/www-releases/trunk/3.1/docs/tutorial/OCamlLangImpl5.html?rev=157282&r1=157281&r2=157282&view=diff
==============================================================================
--- www-releases/trunk/3.1/docs/tutorial/OCamlLangImpl5.html (original)
+++ www-releases/trunk/3.1/docs/tutorial/OCamlLangImpl5.html Tue May 22 15:54:25 2012
@@ -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="http://llvm.org/releases/3.1/docs/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