aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-11-24 17:18:39 +0000
committerDan Gohman <gohman@apple.com>2008-11-24 17:18:39 +0000
commit4dfac708ba57fcb0c295d993dd9e239963d4e42f (patch)
tree4ab54604e48bc1a77cb9a7a49af0b3e6079e12be /docs
parentc630c41f82913ff986a125acc9899fc265564732 (diff)
downloadexternal_llvm-4dfac708ba57fcb0c295d993dd9e239963d4e42f.zip
external_llvm-4dfac708ba57fcb0c295d993dd9e239963d4e42f.tar.gz
external_llvm-4dfac708ba57fcb0c295d993dd9e239963d4e42f.tar.bz2
Fix a few HTML tidiness issues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59966 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/CodingStandards.html4
-rw-r--r--docs/CompilerWriterInfo.html2
-rw-r--r--docs/FAQ.html8
-rw-r--r--docs/LangRef.html2
-rw-r--r--docs/Lexicon.html1
5 files changed, 10 insertions, 7 deletions
diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html
index 9a93278..75d5cc8 100644
--- a/docs/CodingStandards.html
+++ b/docs/CodingStandards.html
@@ -645,7 +645,7 @@ code that should not be reached. These are typically of the form:</p>
<div class="doc_code">
<pre>
-assert(0 && "Some helpful error message");
+assert(0 &amp;&amp; "Some helpful error message");
</pre>
</div>
@@ -656,7 +656,7 @@ generating a warning.</p>
<div class="doc_code">
<pre>
-assert(0 && "Some helpful error message");
+assert(0 &amp;&amp; "Some helpful error message");
// Not reached
return 0;
</pre>
diff --git a/docs/CompilerWriterInfo.html b/docs/CompilerWriterInfo.html
index 16810e5..14dc9c7 100644
--- a/docs/CompilerWriterInfo.html
+++ b/docs/CompilerWriterInfo.html
@@ -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>
diff --git a/docs/FAQ.html b/docs/FAQ.html
index 6b31d96..2d96195 100644
--- a/docs/FAQ.html
+++ b/docs/FAQ.html
@@ -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 @@ using <tt>llvm-gcc</tt> instead.</p>
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 @@ code that you desire.
<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>
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 7c770cb..aa9d42f 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -565,7 +565,7 @@ All Global Variables and Functions have one of the following types of linkage:
</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
diff --git a/docs/Lexicon.html b/docs/Lexicon.html
index 83a653e..2471516 100644
--- a/docs/Lexicon.html
+++ b/docs/Lexicon.html
@@ -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>