[llvm] r260855 - Fix some typos in the llvm doc

Sylvestre Ledru via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 14 12:16:23 PST 2016


Author: sylvestre
Date: Sun Feb 14 14:16:22 2016
New Revision: 260855

URL: http://llvm.org/viewvc/llvm-project?rev=260855&view=rev
Log:
Fix some typos in the llvm doc

Modified:
    llvm/trunk/docs/CoverageMappingFormat.rst
    llvm/trunk/docs/HowToReleaseLLVM.rst
    llvm/trunk/docs/LangRef.rst
    llvm/trunk/docs/MergeFunctions.rst
    llvm/trunk/docs/NVPTXUsage.rst
    llvm/trunk/docs/ProgrammersManual.rst
    llvm/trunk/docs/Statepoints.rst
    llvm/trunk/docs/tutorial/OCamlLangImpl1.rst

Modified: llvm/trunk/docs/CoverageMappingFormat.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CoverageMappingFormat.rst?rev=260855&r1=260854&r2=260855&view=diff
==============================================================================
--- llvm/trunk/docs/CoverageMappingFormat.rst (original)
+++ llvm/trunk/docs/CoverageMappingFormat.rst Sun Feb 14 14:16:22 2016
@@ -430,7 +430,7 @@ and can appear after ``:`` in the ``[foo
 LEB128
 ^^^^^^
 
-LEB128 is an unsigned interger value that is encoded using DWARF's LEB128
+LEB128 is an unsigned integer value that is encoded using DWARF's LEB128
 encoding, optimizing for the case where values are small
 (1 byte for values less than 128).
 

Modified: llvm/trunk/docs/HowToReleaseLLVM.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/HowToReleaseLLVM.rst?rev=260855&r1=260854&r2=260855&view=diff
==============================================================================
--- llvm/trunk/docs/HowToReleaseLLVM.rst (original)
+++ llvm/trunk/docs/HowToReleaseLLVM.rst Sun Feb 14 14:16:22 2016
@@ -332,7 +332,7 @@ Below are the rules regarding patching t
 #. During the remaining rounds of testing, only patches that fix critical
    regressions may be applied.
 
-#. For dot releases all patches must mantain both API and ABI compatibility with
+#. For dot releases all patches must maintain both API and ABI compatibility with
    the previous major release.  Only bugfixes will be accepted.
 
 Merging Patches

Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=260855&r1=260854&r2=260855&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Sun Feb 14 14:16:22 2016
@@ -1517,7 +1517,7 @@ operand bundle to not miscompile program
   ways before control is transferred to the callee or invokee.
 - Calls and invokes with operand bundles have unknown read / write
   effect on the heap on entry and exit (even if the call target is
-  ``readnone`` or ``readonly``), unless they're overriden with
+  ``readnone`` or ``readonly``), unless they're overridden with
   callsite specific attributes.
 - An operand bundle at a call site cannot change the implementation
   of the called function.  Inter-procedural optimizations work as
@@ -3137,7 +3137,7 @@ the same register to an output and an in
 assembly contains two instructions, where the first writes to one output, and
 the second reads an input and writes to a second output), then the "``&``"
 modifier must be used (e.g. "``=&r``") to specify that the output is an
-"early-clobber" output. Marking an ouput as "early-clobber" ensures that LLVM
+"early-clobber" output. Marking an output as "early-clobber" ensures that LLVM
 will not use the same register for any inputs (other than an input tied to this
 output).
 
@@ -11504,7 +11504,7 @@ The '``llvm.masked.scatter``' intrinsics
 
 ::
 
-       ;; This instruction unconditionaly stores data vector in multiple addresses
+       ;; This instruction unconditionally stores data vector in multiple addresses
        call @llvm.masked.scatter.v8i32 (<8 x i32> %value, <8 x i32*> %ptrs, i32 4,  <8 x i1>  <true, true, .. true>)
 
        ;; It is equivalent to a list of scalar stores

Modified: llvm/trunk/docs/MergeFunctions.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/MergeFunctions.rst?rev=260855&r1=260854&r2=260855&view=diff
==============================================================================
--- llvm/trunk/docs/MergeFunctions.rst (original)
+++ llvm/trunk/docs/MergeFunctions.rst Sun Feb 14 14:16:22 2016
@@ -697,7 +697,7 @@ Below is detailed body description.
 If “F” may be overridden
 ------------------------
 As follows from ``mayBeOverridden`` comments: “whether the definition of this
-global may be replaced by something non-equivalent at link time”. If so, thats
+global may be replaced by something non-equivalent at link time”. If so, that's
 ok: we can use alias to *F* instead of *G* or change call instructions itself.
 
 HasGlobalAliases, removeUsers

Modified: llvm/trunk/docs/NVPTXUsage.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/NVPTXUsage.rst?rev=260855&r1=260854&r2=260855&view=diff
==============================================================================
--- llvm/trunk/docs/NVPTXUsage.rst (original)
+++ llvm/trunk/docs/NVPTXUsage.rst Sun Feb 14 14:16:22 2016
@@ -395,7 +395,7 @@ JIT compiling a PTX string to a device b
 .. code-block:: c++
 
     CUmodule module;
-    CUfunction funcion;
+    CUfunction function;
 
     // JIT compile a null-terminated PTX string
     cuModuleLoadData(&module, (void*)PTXString);

Modified: llvm/trunk/docs/ProgrammersManual.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.rst?rev=260855&r1=260854&r2=260855&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Sun Feb 14 14:16:22 2016
@@ -420,7 +420,7 @@ system in place to ensure that names do
 use the same string, they will all be turned on when the name is specified.
 This allows, for example, all debug information for instruction scheduling to be
 enabled with ``-debug-only=InstrSched``, even if the source lives in multiple
-files. The name must not include a comma (,) as that is used to seperate the
+files. The name must not include a comma (,) as that is used to separate the
 arguments of the ``-debug-only`` option.
 
 For performance reasons, -debug-only is not available in optimized build
@@ -1135,7 +1135,7 @@ llvm/ADT/StringSet.h
 ``StringSet`` is a thin wrapper around :ref:`StringMap\<char\> <dss_stringmap>`,
 and it allows efficient storage and retrieval of unique strings.
 
-Functionally analogous to ``SmallSet<StringRef>``, ``StringSet`` also suports
+Functionally analogous to ``SmallSet<StringRef>``, ``StringSet`` also supports
 iteration. (The iterator dereferences to a ``StringMapEntry<char>``, so you
 need to call ``i->getKey()`` to access the item of the StringSet.)  On the
 other hand, ``StringSet`` doesn't support range-insertion and

Modified: llvm/trunk/docs/Statepoints.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Statepoints.rst?rev=260855&r1=260854&r2=260855&view=diff
==============================================================================
--- llvm/trunk/docs/Statepoints.rst (original)
+++ llvm/trunk/docs/Statepoints.rst Sun Feb 14 14:16:22 2016
@@ -262,7 +262,7 @@ As a practical consideration, many garba
 collector-aware ("managed code") to call code that is not collector-aware
 ("unmanaged code"). It is common that such calls must also be safepoints, since
 it is desirable to allow the collector to run during the execution of
-unmanaged code. Futhermore, it is common that coordinating the transition from
+unmanaged code. Furthermore, it is common that coordinating the transition from
 managed to unmanaged code requires extra code generation at the call site to
 inform the collector of the transition. In order to support these needs, a
 statepoint may be marked as a GC transition, and data that is necessary to

Modified: llvm/trunk/docs/tutorial/OCamlLangImpl1.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/OCamlLangImpl1.rst?rev=260855&r1=260854&r2=260855&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/OCamlLangImpl1.rst (original)
+++ llvm/trunk/docs/tutorial/OCamlLangImpl1.rst Sun Feb 14 14:16:22 2016
@@ -106,7 +106,7 @@ support the if/then/else construct, a fo
 JIT compilation with a simple command line interface, etc.
 
 Because we want to keep things simple, the only datatype in Kaleidoscope
-is a 64-bit floating point type (aka 'float' in O'Caml parlance). As
+is a 64-bit floating point type (aka 'float' in OCaml parlance). As
 such, all values are implicitly double precision and the language
 doesn't require type declarations. This gives the language a very nice
 and simple syntax. For example, the following simple example computes




More information about the llvm-commits mailing list