Modified the footer to be a link to the LLVM web page.
authorJohn Criswell <criswell@uiuc.edu>
Thu, 11 Sep 2003 20:23:52 +0000 (20:23 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Thu, 11 Sep 2003 20:23:52 +0000 (20:23 +0000)
Organized the commands into three distinct groups on the main page.
Fixed the hyperlinks in the main page.
Removed as and dis; they will not exist with those names by Release 1.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8485 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CommandGuide/analyze.html
docs/CommandGuide/gccas.html
docs/CommandGuide/gccld.html
docs/CommandGuide/index.html
docs/CommandGuide/lli.html
docs/CommandGuide/llvm-as.html
docs/CommandGuide/llvm-dis.html
docs/CommandGuide/opt.html

index 76bc6fb141f802c8ba03db998b71ab2744eefbfb..15a06392057b8f499998a5f15add803d8ca78cc6 100644 (file)
@@ -81,7 +81,7 @@ SEE ALSO
 opt
 
 <HR>
-University of Illinois at Urbana-Champaign
+<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
 </body>
 </html>
 
index d1dbb75d6a84e5970cef99762d7c5ebc413c0929..aaed1960aca31cd8cd06d0e45da478b745fea391 100644 (file)
@@ -75,7 +75,7 @@ SEE ALSO
 llvm-dis
 
 <HR>
-University of Illinois at Urbana-Champaign
+<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
 </body>
 </html>
 
index 15a4f5f2264bac7d1e26a744f4f1b5d1b5550487..ea1c30c57a8cd2b2f4cb75bfeb675deb7dbf7dcf 100644 (file)
@@ -118,7 +118,7 @@ SEE ALSO
 llvm-dis
 
 <HR>
-University of Illinois at Urbana-Champaign
+<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
 </body>
 </html>
 
index fcb4904d90d84e8af0b1cdc95fae205a71663ab2..022e9eefb3268ebc23be64692090df1a253eefdf 100644 (file)
        are.
 
        <!--===============================================================-->
-       <h2><a name="llvmcmds">LLVM Commands</a><hr></h2>
+       <h2><a name="llvmcmds">LLVM Base Commands</a><hr></h2>
        <!--===============================================================-->
 
        <dl compact>
-               <dt><A href="CommandGuide/bugpoint.html"><b>bugpoint</b></A>
-               <dd>
-               Trace an LLVM bytecode program and reduce its failure to a
-               simple testcase.
-               <p>
-
-               <dt><A href="CommandGuide/llvmas.html"><b>as</b></A>
-               <dt><A href="CommandGuide/llvmas.html"><b>llvm-as</b></A>
+               <dt><A href="llvmas.html"><b>llvm-as</b></A>
                <dd>
                Assemble a human-readable LLVM program into LLVM bytecode.
                <p>
 
-               <dt><A href="CommandGuide/llvmdis.html"><b>dis</b></A>
-               <dt><A href="CommandGuide/llvmdis.html"><b>llvm-dis</b></A>
+               <dt><A href="llvmdis.html"><b>llvm-dis</b></A>
                <dd>
                Disassemble an LLVM bytecode file into human-readable form.
                <p>
 
-               <dt><A href="CommandGuide/extract.html"><b>extract</b></A>
-               <dd>
-               Extract a function from an LLVM bytecode file.
-               <p>
-
-               <dt><A href="CommandGuide/analyze.html"><b>analyze</b></A>
+               <dt><A href="analyze.html"><b>analyze</b></A>
                <dd>
                Analyze an LLVM bytecode file.
                <p>
 
-               <dt><A href="CommandGuide/opt.html"><b>opt</b></A>
+               <dt><A href="opt.html"><b>opt</b></A>
                <dd>
                Optimize an LLVM bytecode file.
                <p>
 
-               <dt><A href="CommandGuide/link.html"><b>link</b></A>
+               <dt><A href="link.html"><b>link</b></A>
                <dd>
                Link several LLVM bytecode files together into one LLVM
                bytecode file.
                <p>
 
-               <dt><A href="CommandGuide/gccas.html"><b>gccas</b></A>
+               <dt><A href="llc.html"><b>llc</b></A>
                <dd>
-               LLVM assembler used by GCC and other native compiler tools.
+               Compile an LLVM bytecode program into native machine code.
+
+               <dt><A href="lli.html"><b>lli</b></A>
+               <dd>
+               Run an LLVM bytecode program using either an interpreter or a
+               JIT compiler.
                <p>
+       </dl>
+
+       <!--===============================================================-->
+       <h2><a name="llvmcmds">LLVM Debugging Tools</a><hr></h2>
+       <!--===============================================================-->
 
-               <dt><A href="CommandGuide/gccld.html"><b>gccld</b></A>
+       <dl compact>
+               <dt><A href="bugpoint.html"><b>bugpoint</b></A>
                <dd>
-               LLVM linker used by GCC and other native compiler tools.
+               Trace an LLVM bytecode program and reduce its failure to a
+               simple testcase.
                <p>
 
-               <dt><A href="CommandGuide/llc.html"><b>llc</b></A>
+               <dt><A href="extract.html"><b>extract</b></A>
                <dd>
-               Compile an LLVM bytecode program into native machine code.
+               Extract a function from an LLVM bytecode file.
+       </dl>
+
+       <!--===============================================================-->
+       <h2><a name="llvmcmds">LLVM GCC Support Commands</a><hr></h2>
+       <!--===============================================================-->
 
-               <dt><A href="CommandGuide/lli.html"><b>lli</b></A>
+       <dl compact>
+               <dt><A href="gccas.html"><b>gccas</b></A>
                <dd>
-               Run an LLVM bytecode program using either an interpreter or a
-               JIT compiler.
+               LLVM assembler used by GCC and other native compiler tools.
                <p>
+
+               <dt><A href="gccld.html"><b>gccld</b></A>
+               <dd>
+               LLVM linker used by GCC and other native compiler tools.
        </dl>
 
        </body>
index 34953981c6e6da40030f2af78e8d9c8e33994ef0..f6b2921b685c11eaafc7afced7307a0e0b303ff2 100644 (file)
@@ -74,7 +74,7 @@ SEE ALSO
 llvm-dis
 
 <HR>
-University of Illinois at Urbana-Champaign
+<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
 </body>
 </html>
 
index 26ff47fdec1d7b66ac1a6bcd3a3f1e8ac1c6bc26..e92d3b78a275a24c7b0fa0631127beaffb3dae00 100644 (file)
@@ -77,7 +77,7 @@ SEE ALSO
 llvm-dis
 
 <HR>
-University of Illinois at Urbana-Champaign
+<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
 </body>
 </html>
 
index b90442e87160fa5798681aad7e0cb9ad6b6cdb55..079933c5bf162a6bb0015905fa6c234755d30236 100644 (file)
@@ -83,7 +83,7 @@ SEE ALSO
 llvm-dis
 
 <HR>
-University of Illinois at Urbana-Champaign
+<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
 </body>
 </html>
 
index 8e1274ee93ae10d27ed36458cec31a63d1d8aa08..86dcf7326fa5b88bc1421b7c9d147dc2bc460a09 100644 (file)
@@ -110,7 +110,7 @@ SEE ALSO
 analyze
 
 <HR>
-University of Illinois at Urbana-Champaign
+<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
 </body>
 </html>