From 9c55f5965ba337469466fafec364b0ea6eca459f Mon Sep 17 00:00:00 2001
From: NAKAMURA Takumi
Date: Tue, 27 Mar 2012 11:25:16 +0000
Subject: llvm/docs/*.html: Fix markups.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153508 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/CodeGenerator.html | 2 ++
docs/CodingStandards.html | 2 +-
docs/DeveloperPolicy.html | 4 ++++
docs/ExceptionHandling.html | 2 ++
docs/FAQ.html | 24 ++++++++++++++++++++++++
docs/GettingStarted.html | 7 +++----
docs/LLVMBuild.html | 2 +-
docs/LangRef.html | 4 ++--
docs/ProgrammersManual.html | 14 ++++++++------
docs/ReleaseNotes.html | 5 ++---
docs/SourceLevelDebugging.html | 4 ++--
docs/TableGenFundamentals.html | 2 +-
docs/TestingGuide.html | 2 --
13 files changed, 52 insertions(+), 22 deletions(-)
diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html
index 32a3a97..77bd625 100644
--- a/docs/CodeGenerator.html
+++ b/docs/CodeGenerator.html
@@ -861,6 +861,8 @@ ret
+
+
The "MC" Layer
diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html
index f00caa3..5390a7a 100644
--- a/docs/CodingStandards.html
+++ b/docs/CodingStandards.html
@@ -465,7 +465,7 @@ common use case of LLVM as a library linked into a larger application.
Consider the use of LLVM as a JIT linked into another application (perhaps
for OpenGL, custom languages,
shaders in
-movies, etc). Due to the design of static constructors, they must be
+movies, etc). Due to the design of static constructors, they must be
executed at startup time of the entire application, regardless of whether or
how LLVM is used in that larger application. There are two problems with
this:
diff --git a/docs/DeveloperPolicy.html b/docs/DeveloperPolicy.html
index 08e47a1..93eb3d3 100644
--- a/docs/DeveloperPolicy.html
+++ b/docs/DeveloperPolicy.html
@@ -501,6 +501,8 @@
+
+
NOTE: This section deals with
legal matters but does not provide legal advice. We are not lawyers —
@@ -622,6 +624,8 @@
+
+
diff --git a/docs/ExceptionHandling.html b/docs/ExceptionHandling.html
index 42881f5..5ee1c4b 100644
--- a/docs/ExceptionHandling.html
+++ b/docs/ExceptionHandling.html
@@ -497,6 +497,8 @@
+
+
Asm Table Formats
diff --git a/docs/FAQ.html b/docs/FAQ.html
index 7294cdd..74e8534 100644
--- a/docs/FAQ.html
+++ b/docs/FAQ.html
@@ -140,6 +140,8 @@
+
+
Why are the LLVM source code and the front-end distributed under different
licenses?
@@ -185,12 +187,16 @@
GPL, as explained in the first question above.
+
+
+
+
In what language is LLVM written?
@@ -223,12 +229,16 @@ LLVM have been ported to a plethora of platforms.
+
+
+
+
When I run configure, it finds the wrong C compiler.
@@ -435,11 +445,15 @@ Stop.
We regret the inconvenience.
+
+
+
+
@@ -540,11 +554,15 @@ Stop.
Instruction.
+
+
+
+
When I compile software that uses a configure script, the configure script
thinks my system has all of the header files and libraries it is testing for.
@@ -697,11 +715,15 @@ Stop.
order to have the result conform to the platform ABI.
+
+
+
+
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 575ec04..2bc17ea 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -155,8 +155,8 @@ also be a good place to start.
cd where-you-want-to-build-llvm
mkdir build (for building without polluting the source dir)
cd build
- ../llvm/configure [options]
- Some common options:
+ ../llvm/configure [options]
+
Some common options:
- --prefix=directory -
@@ -174,7 +174,7 @@ also be a good place to start.
- --enable-assertions -
Compile with assertion checks enabled (default is YES).
-
+
make [-j] - The -j specifies the number of jobs (commands) to
run simultaneously. This builds both LLVM and Clang for Debug+Asserts mode.
The --enabled-optimized configure option is used to specify a Release build.
@@ -192,7 +192,6 @@ also be a good place to start.
-
diff --git a/docs/LLVMBuild.html b/docs/LLVMBuild.html
index b069467..cce607d 100644
--- a/docs/LLVMBuild.html
+++ b/docs/LLVMBuild.html
@@ -171,7 +171,7 @@ name = Linker
parent = Libraries
required_libraries = Archive BitReader Core Support TransformUtils
-
+
A full description of the exact sections and properties which are allowed
follows.
diff --git a/docs/LangRef.html b/docs/LangRef.html
index cfe4890..50ce5a0 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -3029,6 +3029,8 @@ call void @llvm.dbg.value(metadata !24, i64 0, metadata !25)
+
+
'range' Metadata
@@ -3066,8 +3068,6 @@ call void @llvm.dbg.value(metadata !24, i64 0, metadata !25)
-
-
Module Flags Metadata
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index f4c0322..1a7f215 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -2567,7 +2567,7 @@ block but not delete it, you can use the removeFromParent() method.
-
Replacing individual instructions
+
Replacing individual instructions
Including "llvm/Transforms/Utils/BasicBlockUtils.h"
permits use of two very useful replace functions: ReplaceInstWithValue
@@ -2575,6 +2575,7 @@ and ReplaceInstWithInst.
+
- ReplaceInstWithValue
@@ -2611,7 +2612,9 @@ ReplaceInstWithInst(instToReplace->getParent()->getInstList(), ii,
-
Replacing multiple uses of Users and Values
+
+
+Replacing multiple uses of Users and Values
You can use Value::replaceAllUsesWith and
User::replaceUsesOfWith to change more than one use at a time. See the
@@ -3305,13 +3308,12 @@ helpful member functions that try to make common operations easy.
- - Module::Module(std::string name = "")
-
+
Module::Module(std::string name = "")
-Constructing a Module is easy. You can optionally
+
Constructing a Module is easy. You can optionally
provide a name for it (probably based on the name of the translation unit).
+
-
- Module::iterator - Typedef for function list iterator
Module::const_iterator - Typedef for const_iterator.
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 23e31b7..72153a9 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -403,7 +403,6 @@ Release Notes.
- On Darwin, the ARM target now has a full-featured integrated assembler.
-
ARM Integrated Assembler
@@ -421,6 +420,8 @@ subtarget and CPU specific extensions for VFP2, VFP3 and NEON.
for details). While there is some, and growing, support for pre-unfied (divided)
syntax, there are still significant gaps in that support.
+
+
MIPS Target Improvements
@@ -521,8 +522,6 @@ syntax, there are still significant gaps in that support.
-
-
Tools Changes
diff --git a/docs/SourceLevelDebugging.html b/docs/SourceLevelDebugging.html
index 06bd852..cdeedb1 100644
--- a/docs/SourceLevelDebugging.html
+++ b/docs/SourceLevelDebugging.html
@@ -2166,14 +2166,13 @@ The DWARF for this would be:
-
-
+
diff --git a/docs/TableGenFundamentals.html b/docs/TableGenFundamentals.html
index 45baf19..b401c7a 100644
--- a/docs/TableGenFundamentals.html
+++ b/docs/TableGenFundamentals.html
@@ -420,7 +420,7 @@ which case the user must specify it explicitly.
str1#str2
"#" (paste) is a shorthand for !strconcat. It may concatenate
things that are not quoted strings, in which case an implicit
- !cast is done on the operand of the paste.
+ !cast<string> is done on the operand of the paste.
!cast<type>(a)
A symbol of type type obtained by looking up the string 'a' in
the symbol table. If the type of 'a' does not match type, TableGen
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html
index fe5d836..bd3db22 100644
--- a/docs/TestingGuide.html
+++ b/docs/TestingGuide.html
@@ -889,8 +889,6 @@ understand the Makefile based setup.
the Test Suite Makefile Guide.
-
-
--
cgit v1.1