From f003276ee6c1eff64052456f64457cb82904b7bf Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 24 Nov 2008 17:18:39 +0000 Subject: [PATCH] Fix a few HTML tidiness issues. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59966 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CodingStandards.html | 4 ++-- docs/CompilerWriterInfo.html | 2 ++ docs/FAQ.html | 8 ++++---- docs/LangRef.html | 2 +- docs/Lexicon.html | 1 + 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html index 9a93278c56a..75d5cc83afa 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:

-assert(0 && "Some helpful error message");
+assert(0 && "Some helpful error message");
 
@@ -656,7 +656,7 @@ generating a warning.

-assert(0 && "Some helpful error message");
+assert(0 && "Some helpful error message");
 // Not reached
 return 0;
 
diff --git a/docs/CompilerWriterInfo.html b/docs/CompilerWriterInfo.html index 16810e5d051..14dc9c72444 100644 --- a/docs/CompilerWriterInfo.html +++ b/docs/CompilerWriterInfo.html @@ -7,6 +7,8 @@ + +
Architecture/platform information for compiler writers
diff --git a/docs/FAQ.html b/docs/FAQ.html index 6b31d961e20..2d96195129a 100644 --- a/docs/FAQ.html +++ b/docs/FAQ.html @@ -61,7 +61,7 @@
  • What source languages are supported?
  • 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?
  • + generators?
  • What support is there for higher level source language constructs for building a compiler?
  • 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?
  • -
  • Can I use LLVM to convert C++ code to C code?
  • +
  • Can I use LLVM to convert C++ code to C code?
  • @@ -480,7 +480,7 @@ using llvm-gcc instead.

    of running optimizations, linking, and executable generation.

    -

    +

    @@ -565,7 +565,7 @@ code that you desire. diff --git a/docs/LangRef.html b/docs/LangRef.html index 7c770cb4376..aa9d42fb066 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: -

    For example, since the ".LC0" +

    For example, since the ".LC0" variable is defined to be internal, if another module defined a ".LC0" variable and was linked with this one, one of the two would be renamed, preventing a collision. Since "main" and "puts" are diff --git a/docs/Lexicon.html b/docs/Lexicon.html index 83a653ef3d2..24715167021 100644 --- a/docs/Lexicon.html +++ b/docs/Lexicon.html @@ -36,6 +36,7 @@ DSE - G - + GC - I -