[llvm-commits] [llvm] r59966 - in /llvm/trunk/docs: CodingStandards.html CompilerWriterInfo.html FAQ.html LangRef.html Lexicon.html

Dan Gohman gohman at apple.com
Mon Nov 24 09:18:43 PST 2008


Author: djg
Date: Mon Nov 24 11:18:39 2008
New Revision: 59966

URL: http://llvm.org/viewvc/llvm-project?rev=59966&view=rev
Log:
Fix a few HTML tidiness issues.

Modified:
    llvm/trunk/docs/CodingStandards.html
    llvm/trunk/docs/CompilerWriterInfo.html
    llvm/trunk/docs/FAQ.html
    llvm/trunk/docs/LangRef.html
    llvm/trunk/docs/Lexicon.html

Modified: llvm/trunk/docs/CodingStandards.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodingStandards.html?rev=59966&r1=59965&r2=59966&view=diff

==============================================================================
--- llvm/trunk/docs/CodingStandards.html (original)
+++ llvm/trunk/docs/CodingStandards.html Mon Nov 24 11:18:39 2008
@@ -645,7 +645,7 @@
 
 <div class="doc_code">
 <pre>
-assert(0 && "Some helpful error message");
+assert(0 && "Some helpful error message");
 </pre>
 </div>
 
@@ -656,7 +656,7 @@
 
 <div class="doc_code">
 <pre>
-assert(0 && "Some helpful error message");
+assert(0 && "Some helpful error message");
 // Not reached
 return 0;
 </pre>

Modified: llvm/trunk/docs/CompilerWriterInfo.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CompilerWriterInfo.html?rev=59966&r1=59965&r2=59966&view=diff

==============================================================================
--- llvm/trunk/docs/CompilerWriterInfo.html (original)
+++ llvm/trunk/docs/CompilerWriterInfo.html Mon Nov 24 11:18:39 2008
@@ -7,6 +7,8 @@
   <link rel="stylesheet" href="llvm.css" type="text/css">
 </head>
 
+<body>
+
 <div class="doc_title">
   Architecture/platform information for compiler writers
 </div>

Modified: llvm/trunk/docs/FAQ.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/FAQ.html?rev=59966&r1=59965&r2=59966&view=diff

==============================================================================
--- llvm/trunk/docs/FAQ.html (original)
+++ llvm/trunk/docs/FAQ.html Mon Nov 24 11:18:39 2008
@@ -61,7 +61,7 @@
     <li><a href="#langs">What source languages are supported?</a></li>
     <li><a href="#langirgen">I'd like to write a self-hosting LLVM compiler. How
       should I interface with the LLVM middle-end optimizers and back-end code 
-      generators?</a></div>
+      generators?</a></li>
     <li><a href="#langhlsupp">What support is there for higher level source
       language constructs for building a compiler?</a></li>
     <li><a href="GetElementPtr.html">I don't understand the GetElementPtr
@@ -85,7 +85,7 @@
     How can I disable all optimizations when compiling code using the LLVM GCC front end?
     </li>
 
-    <li><a href="#translatec++">Can I use LLVM to convert C++ code to C code?</a></li>
+    <li><a href="#translatecxx">Can I use LLVM to convert C++ code to C code?</a></li>
 
   </ol>
   </li>
@@ -480,7 +480,7 @@
   of running optimizations, linking, and executable generation.</p>
 </div>
 
-<div class="question"><p><a name="langhlsupp">
+<div class="question"><p><a name="getelementptr">
   I don't understand the GetElementPtr instruction. Help!</a></p>
 </div>
 <div class="answer">
@@ -565,7 +565,7 @@
 
 <div class="question">
 <p>
-<a name="translatec++">Can I use LLVM to convert C++ code to C code?</a>
+<a name="translatecxx">Can I use LLVM to convert C++ code to C code?</a>
 </p>
 </div>
 

Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=59966&r1=59965&r2=59966&view=diff

==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Mon Nov 24 11:18:39 2008
@@ -565,7 +565,7 @@
 
 </dl>
 
-<p><a name="linkage_external"></a>For example, since the "<tt>.LC0</tt>"
+<p>For example, since the "<tt>.LC0</tt>"
 variable is defined to be internal, if another module defined a "<tt>.LC0</tt>"
 variable and was linked with this one, one of the two would be renamed,
 preventing a collision.  Since "<tt>main</tt>" and "<tt>puts</tt>" are

Modified: llvm/trunk/docs/Lexicon.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Lexicon.html?rev=59966&r1=59965&r2=59966&view=diff

==============================================================================
--- llvm/trunk/docs/Lexicon.html (original)
+++ llvm/trunk/docs/Lexicon.html Mon Nov 24 11:18:39 2008
@@ -36,6 +36,7 @@
       <td><a href="#DSE">DSE</a></td>
     </tr>
     <tr><th colspan="8"><b>- <a href="#G">G</a> -</b></th></tr>
+    <tr>
       <td><a href="#GC">GC</a></td>
     </tr>
     <tr><th colspan="8"><b>- <a href="#I">I</a> -</b></th></tr>





More information about the llvm-commits mailing list