From c8e41c591741b3da1077f7000274ad040bef8002 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 23 Jul 2012 08:51:15 +0000 Subject: Fix a typo (the the => the) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160621 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/Atomics.rst | 2 +- docs/CommandGuide/llvm-ar.rst | 2 +- docs/CommandLine.html | 2 +- docs/GettingStarted.html | 4 ++-- docs/GettingStartedVS.rst | 2 +- docs/LangRef.html | 2 +- docs/Passes.html | 2 +- docs/ProgrammersManual.html | 2 +- docs/tutorial/LangImpl8.html | 2 +- docs/tutorial/OCamlLangImpl8.html | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) (limited to 'docs') diff --git a/docs/Atomics.rst b/docs/Atomics.rst index db279590..1bca53e 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 aec55ae..eddffeb 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 6f3298a..aff40d0 100644 --- a/docs/CommandLine.html +++ b/docs/CommandLine.html @@ -122,7 +122,7 @@ CommandLine library to have the following features:

  1. 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).
  2. diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index d1df7dd..c91cb03 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -627,7 +627,7 @@ upgrading to a newer version of Gold.

    LLVM and to give you some basic information about the LLVM environment.

    The later sections of this guide describe the general layout of the the LLVM source tree, a general layout of the LLVM source tree, a simple example using the LLVM tool chain, and links to find more information about LLVM or to get help via e-mail.

    @@ -1535,7 +1535,7 @@ information is in the Command Guide.

    bitcode or assembly (with the -emit-llvm option) instead of the usual machine code output. It works just like any other GCC compiler, taking the typical -c, -S, -E, -o options that are typically used. - Additionally, the the source code for llvm-gcc is available as a + Additionally, the source code for llvm-gcc is available as a separate Subversion module.
    opt
    diff --git a/docs/GettingStartedVS.rst b/docs/GettingStartedVS.rst index 7d773b7..35f97f0 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 c32c98c..04c1bf8 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1432,7 +1432,7 @@ target datalayout = "layout specification"
  3. 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).
  4. diff --git a/docs/Passes.html b/docs/Passes.html index a274cbc..2ebc53a 100644 --- a/docs/Passes.html +++ b/docs/Passes.html @@ -754,7 +754,7 @@ perl -e '$/ = undef; for (split(/\n/, <>)) { s:^ *///? ?::; print "

    \n" if !

    Provides other passes access to information on how the size and alignment - required by the the target ABI for various data types.

    + required by the target ABI for various data types.

    diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 92ffd5e..cfcce4d 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -3864,7 +3864,7 @@ is its address (after linking) which is guaranteed to be constant.

    *Ty, LinkageTypes Linkage, const std::string &N = "", Module* Parent = 0)

    Constructor used when you need to create new Functions 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 FunctionType 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 efd1756..7c1a500 100644 --- a/docs/tutorial/LangImpl8.html +++ b/docs/tutorial/LangImpl8.html @@ -47,7 +47,7 @@

    -

    Welcome to the the final chapter of the "Implementing a +

    Welcome to the final chapter of the "Implementing a language with LLVM" 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. :)

    diff --git a/docs/tutorial/OCamlLangImpl8.html b/docs/tutorial/OCamlLangImpl8.html index efd1756..7c1a500 100644 --- a/docs/tutorial/OCamlLangImpl8.html +++ b/docs/tutorial/OCamlLangImpl8.html @@ -47,7 +47,7 @@
    -

    Welcome to the the final chapter of the "Implementing a +

    Welcome to the final chapter of the "Implementing a language with LLVM" 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. :)

    -- cgit v1.1