Consistently set the background color
authorChris Lattner <sabre@nondot.org>
Tue, 7 Oct 2003 20:12:05 +0000 (20:12 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 7 Oct 2003 20:12:05 +0000 (20:12 +0000)
Change the footer to include "maintained by"

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

docs/CommandGuide/analyze.html
docs/CommandGuide/extract.html
docs/CommandGuide/gccas.html
docs/CommandGuide/gccld.html
docs/CommandGuide/llc.html
docs/CommandGuide/lli.html
docs/CommandGuide/llvm-as.html
docs/CommandGuide/llvm-dis.html
docs/CommandGuide/llvmgcc.html
docs/CommandGuide/llvmgxx.html
docs/CommandGuide/opt.html

index 2f32036fa4c20e10ae739fe4838a8d6baf9eb37f..9d73e8678e03eb3d5b23449f24fbd16300343825 100644 (file)
@@ -3,7 +3,7 @@
 LLVM: analyze tool
 </title>
 
-<body>
+<body bgcolor=white>
 
 <center>
 <h1>LLVM: analyze tool</h1>
@@ -86,7 +86,7 @@ SEE ALSO
 opt
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>
 
index de4655fc99a69484fa8ff656a9efe6de0393e1aa..1e2301d1eb1cb3fba47f071a471c7a7f629094fc 100644 (file)
@@ -3,7 +3,7 @@
 LLVM: extract tool
 </title>
 
-<body>
+<body bgcolor=white>
 
 <center>
 <h1>LLVM: <tt>extract</tt> tool</h1>
@@ -64,7 +64,7 @@ SEE ALSO
 <a href="bugpoint.html"><tt>bugpoint</tt></a>
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>
 
index c0a5a7462d298547a44e4dda74133da2f1a0f094..b0297a45e71b3746147c6962ae30a206c99b5e8f 100644 (file)
@@ -1,7 +1,7 @@
 <html>
 <title>LLVM: gccas tool</title>
 
-<body>
+<body bgcolor=white>
 
 <center>
 <h1>LLVM: <tt>gccas</tt> tool</h1>
@@ -68,7 +68,7 @@ it will exit with a non-zero value.
 <a href="gccld.html"><tt>gccld</tt></a>
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>
 
index 27ed3fe7d73a5812b5af48b9a64de7e86eb1fe9e..517caa95a15d9151b1c7d36c1f56474a1a2c2774 100644 (file)
@@ -174,7 +174,7 @@ The -L option cannot be used for find native code libraries when using the
 -native option.
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>
 
index 41f45db9c77611502538f5298f6ec3884305ded8..36226933f958c05ce8b3a3a5115ecb98e646f4a1 100644 (file)
@@ -1,33 +1,22 @@
 <html>
-<title>
-LLVM: llc tool
-</title>
+<title>LLVM: llc tool</title>
 
-<body>
+<body bgcolor=white>
 
-<center>
-<h1>LLVM: llc tool</h1>
-</center>
+<center><h1>LLVM: <tt>llc</tt> tool</h1></center>
 <HR>
 
-<h3>
-NAME
-</h3>
+<h3>NAME</h3>
+<tt>llc</tt>
 
-llc
+<h3>SYNOPSIS</h3>
+<tt>llc [options] [filename]</tt>
 
-<h3>
-SYNOPSIS
-</h3>
+<h3>DESCRIPTION</h3>
 
-llc [options] [filename]
-<h3>
-DESCRIPTION
-</h3>
-
-The llc command compiles LLVM bytecode into assembly language for a specified
-architecture.  The assembly language output can then be passed through a native
-assembler and linker to generate native code.
+The <tt>llc</tt> command compiles LLVM bytecode into assembly language for a
+specified architecture.  The assembly language output can then be passed through
+a native assembler and linker to generate native code.
 <p>
 The choice of architecture for the output assembly code is determined as
 follows:
@@ -53,8 +42,9 @@ follows:
        <p>
 
        <li>
-       If llc was compiled on an architecture for which it can generate code,
-       select the architecture upon which llc was compiled.
+       If <tt>llc</tt> was compiled on an architecture for which it can
+       generate code, select the architecture upon which <tt>llc</tt> was
+       compiled.
        <p>
 
        <li>
@@ -64,17 +54,17 @@ follows:
 
 <p>
 
-If filename is not specified, or if filename is -, llc reads its input from
-standard input.  Otherwise, it will read its input from filename.
+If filename is not specified, or if filename is -, <tt>llc</tt> reads its input
+from standard input.  Otherwise, it will read its input from filename.
 <p>
 
-If the -o option is left unspecified, then llc will send its output to standard
+If the -o option is left unspecified, then <tt>llc</tt> will send its output to standard
 output if the input is from standard input.  If the -o option specifies -, then
 the output will also be sent to standard output.
 <p>
 
 If no -o option is specified and an input file other than - is specified, then
-llc creates the output filename as follows:
+<tt>llc</tt> creates the output filename as follows:
 
 <ul>
        <li>
@@ -191,20 +181,18 @@ OPTIONS
 </ul>
 
 
-<h3>
-EXIT STATUS
-</h3>
+<h3>EXIT STATUS</h3>
 
-If llc succeeds, it will exit with 0.  Otherwise, if an error occurs, it
-will exit with a non-zero value.
+If <tt>llc</tt> succeeds, it will exit with 0.  Otherwise, if an error occurs,
+it will exit with a non-zero value.
 
 <h3>
 SEE ALSO
 </h3>
-llvm-dis, lli
+<a href="lli.html"><tt>lli</tt></a>
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>
 
index dd6119bc7e3a15ea0c2ba32fbd8aaa7f35f70f53..ba920984e1c24251cc2d44dde818a84b30c4baec 100644 (file)
@@ -3,7 +3,7 @@
 LLVM: lli tool
 </title>
 
-<body>
+<body bgcolor=white>
 
 <center>
 <h1>LLVM: <tt>lli</tt> tool</h1>
@@ -78,7 +78,7 @@ SEE ALSO
 <a href="llc.html"><tt>llc</tt></a>
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>
 
index 985c8af399d508ca9427094d8f7a7560aabf989b..8406d6eff537db6e1874cc7d2ec9d167b00d15a9 100644 (file)
@@ -3,7 +3,7 @@
 LLVM: llvm-as tool
 </title>
 
-<body>
+<body bgcolor=white>
 
 <center>
 <h1>LLVM: llvm-as tool</h1>
@@ -102,7 +102,7 @@ SEE ALSO
 llvm-dis
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>
 
index c6288b0359cbc7856ecdb8741ddde72db0715e98..15e8bf6bffdb930c9072f69512b08fecc6acbac3 100644 (file)
@@ -3,7 +3,7 @@
 LLVM: llvm-dis tool
 </title>
 
-<body>
+<body bgcolor=white>
 
 <center>
 <h1>LLVM: llvm-dis tool</h1>
@@ -107,7 +107,7 @@ SEE ALSO
 llvm-as
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>
 
index 360f3656747c49d9fdc359c2ac3a2d54cabd3d22..99657d22f82a4556a99902653f52151ab71a4efc 100644 (file)
@@ -3,7 +3,7 @@
 LLVM: llvmgcc tool
 </title>
 
-<body>
+<body bgcolor=white>
 
 <center>
 <h1>LLVM: <tt>llvmgcc</tt> tool</h1>
@@ -103,7 +103,7 @@ SEE ALSO
 <A HREF="gccld.html"><tt>gccld</tt></A>
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>
 
index 90eb9d293e05ccce7638fda8c41ceb60c81185f5..7efd46d96e96285aec057000661fc89884b66d72 100644 (file)
@@ -3,7 +3,7 @@
 LLVM: llvmg++ tool
 </title>
 
-<body>
+<body bgcolor=white>
 
 <center>
 <h1>LLVM: <tt>llvmg++</tt> tool</h1>
@@ -97,7 +97,7 @@ SEE ALSO
 <A HREF="gccld.html"><tt>gccld</tt></A>
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>
 
index b75620706cf63c113445bce407c02122396ff72e..ace6a7ac9895eb3595c132e2ff37773590d6c6c6 100644 (file)
@@ -3,7 +3,7 @@
 LLVM: opt tool
 </title>
 
-<body>
+<body bgcolor=white>
 
 <center>
 <h1>LLVM: opt tool</h1>
@@ -127,7 +127,7 @@ SEE ALSO
 analyze
 
 <HR>
-<a href="http://llvm.cs.uiuc.edu">LLVM Team</a>
+Maintained by the <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>.
 </body>
 </html>