summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/Atomics.rst2
-rw-r--r--docs/CommandGuide/llvm-ar.rst2
-rw-r--r--docs/CommandLine.html2
-rw-r--r--docs/GettingStarted.html4
-rw-r--r--docs/GettingStartedVS.rst2
-rw-r--r--docs/LangRef.html2
-rw-r--r--docs/Passes.html2
-rw-r--r--docs/ProgrammersManual.html2
-rw-r--r--docs/tutorial/LangImpl8.html2
-rw-r--r--docs/tutorial/OCamlLangImpl8.html2
10 files changed, 11 insertions, 11 deletions
diff --git a/docs/Atomics.rst b/docs/Atomics.rst
index db27959073..1bca53e2b1 100644
--- a/docs/Atomics.rst
+++ b/docs/Atomics.rst
@@ -318,7 +318,7 @@ Notes for frontends
operation, and vice versa.
Notes for optimizers
- In general, optimizers should treat this like a nothrow call; the the possible
+ In general, optimizers should treat this like a nothrow call; the possible
optimizations are usually not interesting.
Notes for code generation
diff --git a/docs/CommandGuide/llvm-ar.rst b/docs/CommandGuide/llvm-ar.rst
index aec55ae62a..eddffeba7d 100644
--- a/docs/CommandGuide/llvm-ar.rst
+++ b/docs/CommandGuide/llvm-ar.rst
@@ -208,7 +208,7 @@ section (above) to determine which modifiers are applicable to which operations.
When inserting or moving member files, this option specifies the destination of
the new files as being before the *relpos* member. If *relpos* is not
found, the files are placed at the end of the archive. This modifier is
- identical to the the *i* modifier.
+ identical to the *i* modifier.
diff --git a/docs/CommandLine.html b/docs/CommandLine.html
index 6f3298ab39..aff40d05f8 100644
--- a/docs/CommandLine.html
+++ b/docs/CommandLine.html
@@ -122,7 +122,7 @@ CommandLine library to have the following features:</p>
<ol>
<li>Speed: The CommandLine library is very quick and uses little resources. The
parsing time of the library is directly proportional to the number of arguments
-parsed, not the the number of options recognized. Additionally, command line
+parsed, not the number of options recognized. Additionally, command line
argument values are captured transparently into user defined global variables,
which can be accessed like any other variable (and with the same
performance).</li>
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index d1df7dd20c..c91cb03d18 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -627,7 +627,7 @@ upgrading to a newer version of Gold.</p>
LLVM and to give you some basic information about the LLVM environment.</p>
<p>The later sections of this guide describe the <a
-href="#layout">general layout</a> of the the LLVM source tree, a <a
+href="#layout">general layout</a> of the LLVM source tree, a <a
href="#tutorial">simple example</a> using the LLVM tool chain, and <a
href="#links">links</a> to find more information about LLVM or to get
help via e-mail.</p>
@@ -1535,7 +1535,7 @@ information is in the <a href="CommandGuide/index.html">Command Guide</a>.</p>
bitcode or assembly (with the <tt>-emit-llvm</tt> option) instead of the
usual machine code output. It works just like any other GCC compiler,
taking the typical <tt>-c, -S, -E, -o</tt> options that are typically used.
- Additionally, the the source code for <tt>llvm-gcc</tt> is available as a
+ Additionally, the source code for <tt>llvm-gcc</tt> is available as a
separate Subversion module.</dd>
<dt><tt><b>opt</b></tt></dt>
diff --git a/docs/GettingStartedVS.rst b/docs/GettingStartedVS.rst
index 7d773b7900..35f97f04b9 100644
--- a/docs/GettingStartedVS.rst
+++ b/docs/GettingStartedVS.rst
@@ -170,7 +170,7 @@ An Example Using the LLVM Tool Chain
C:\..> clang -c hello.c -emit-llvm -o hello.bc
This will create the result file ``hello.bc`` which is the LLVM bitcode
- that corresponds the the compiled program and the library facilities that
+ that corresponds the compiled program and the library facilities that
it required. You can execute this file directly using ``lli`` tool,
compile it to native assembly with the ``llc``, optimize or analyze it
further with the ``opt`` tool, etc.
diff --git a/docs/LangRef.html b/docs/LangRef.html
index c32c98c36d..04c1bf8b32 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -1432,7 +1432,7 @@ target datalayout = "<i>layout specification</i>"
<li>If no match is found, and the type sought is an integer type, then the
smallest integer type that is larger than the bitwidth of the sought type
is used. If none of the specifications are larger than the bitwidth then
- the the largest integer type is used. For example, given the default
+ the largest integer type is used. For example, given the default
specifications above, the i7 type will use the alignment of i8 (next
largest) while both i65 and i256 will use the alignment of i64 (largest
specified).</li>
diff --git a/docs/Passes.html b/docs/Passes.html
index a274cbcfd5..2ebc53ab87 100644
--- a/docs/Passes.html
+++ b/docs/Passes.html
@@ -754,7 +754,7 @@ perl -e '$/ = undef; for (split(/\n/, <>)) { s:^ *///? ?::; print " <p>\n" if !
</h3>
<div>
<p>Provides other passes access to information on how the size and alignment
- required by the the target ABI for various data types.</p>
+ required by the target ABI for various data types.</p>
</div>
</div>
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 92ffd5e473..cfcce4d8d2 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -3864,7 +3864,7 @@ is its address (after linking) which is guaranteed to be constant.</p>
*Ty, LinkageTypes Linkage, const std::string &amp;N = "", Module* Parent = 0)</tt>
<p>Constructor used when you need to create new <tt>Function</tt>s to add
- the the program. The constructor must specify the type of the function to
+ the program. The constructor must specify the type of the function to
create and what type of linkage the function should have. The <a
href="#FunctionType"><tt>FunctionType</tt></a> argument
specifies the formal arguments and return value for the function. The same
diff --git a/docs/tutorial/LangImpl8.html b/docs/tutorial/LangImpl8.html
index efd1756f0c..7c1a500a21 100644
--- a/docs/tutorial/LangImpl8.html
+++ b/docs/tutorial/LangImpl8.html
@@ -47,7 +47,7 @@
<div>
-<p>Welcome to the the final chapter of the "<a href="index.html">Implementing a
+<p>Welcome to the final chapter of the "<a href="index.html">Implementing a
language with LLVM</a>" tutorial. In the course of this tutorial, we have grown
our little Kaleidoscope language from being a useless toy, to being a
semi-interesting (but probably still useless) toy. :)</p>
diff --git a/docs/tutorial/OCamlLangImpl8.html b/docs/tutorial/OCamlLangImpl8.html
index efd1756f0c..7c1a500a21 100644
--- a/docs/tutorial/OCamlLangImpl8.html
+++ b/docs/tutorial/OCamlLangImpl8.html
@@ -47,7 +47,7 @@
<div>
-<p>Welcome to the the final chapter of the "<a href="index.html">Implementing a
+<p>Welcome to the final chapter of the "<a href="index.html">Implementing a
language with LLVM</a>" tutorial. In the course of this tutorial, we have grown
our little Kaleidoscope language from being a useless toy, to being a
semi-interesting (but probably still useless) toy. :)</p>