Skip to content

Commit 211f5d0

Browse files
[llvm] Fix typos in documentation
1 parent f1ab90a commit 211f5d0

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

llvm/docs/AliasAnalysis.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ Writing a new ``AliasAnalysis`` Implementation
207207

208208
Writing a new alias analysis implementation for LLVM is quite straight-forward.
209209
There are already several implementations that you can use for examples, and the
210-
following information should help fill in any details. For a examples, take a
210+
following information should help fill in any details. For examples, take a
211211
look at the `various alias analysis implementations`_ included with LLVM.
212212

213213
Different Pass styles

llvm/docs/ConvergentOperations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ those in the caller.
607607
only if both threads entered the function by executing converged
608608
dynamic instances of the call-site.
609609

610-
This intrinsic can occur at most once in a function, and only in the the entry
610+
This intrinsic can occur at most once in a function, and only in the entry
611611
block of the function. If this intrinsic occurs in a basic block, then it must
612612
precede any other convergent operation in the same basic block.
613613

llvm/docs/JITLink.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ finally transferring linked memory to the executing process.
466466

467467
Calls the ``JITLinkContext``'s ``JITLinkMemoryManager`` to allocate both
468468
working and target memory for the graph. As part of this process the
469-
``JITLinkMemoryManager`` will update the the addresses of all nodes
469+
``JITLinkMemoryManager`` will update the addresses of all nodes
470470
defined in the graph to their assigned target address.
471471

472472
Note: This step only updates the addresses of nodes defined in this graph.

llvm/docs/LangRef.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1515,7 +1515,7 @@ Currently, only the following parameter attributes are defined:
15151515
over-alignment specification through language attributes).
15161516

15171517
``allocalign``
1518-
The function parameter marked with this attribute is is the alignment in bytes of the
1518+
The function parameter marked with this attribute is the alignment in bytes of the
15191519
newly allocated block returned by this function. The returned value must either have
15201520
the specified alignment or be the null pointer. The return value MAY be more aligned
15211521
than the requested alignment, but not less aligned. Invalid (e.g. non-power-of-2)
@@ -22798,7 +22798,7 @@ Semantics:
2279822798

2279922799
The '``llvm.vp.fcmp``' compares its first two operands according to the
2280022800
condition code given as the third operand. The operands are compared element by
22801-
element on each enabled lane, where the the semantics of the comparison are
22801+
element on each enabled lane, where the semantics of the comparison are
2280222802
defined :ref:`according to the condition code <fcmp_md_cc_sem>`. Masked-off
2280322803
lanes are ``poison``.
2280422804

@@ -22856,7 +22856,7 @@ Semantics:
2285622856

2285722857
The '``llvm.vp.icmp``' compares its first two operands according to the
2285822858
condition code given as the third operand. The operands are compared element by
22859-
element on each enabled lane, where the the semantics of the comparison are
22859+
element on each enabled lane, where the semantics of the comparison are
2286022860
defined :ref:`according to the condition code <icmp_md_cc_sem>`. Masked-off
2286122861
lanes are ``poison``.
2286222862

llvm/docs/NVPTXUsage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ optimization pipeline before dead-code elimination.
329329
The NVPTX TargetMachine knows how to schedule ``NVVMReflect`` at the beginning
330330
of your pass manager; just use the following code when setting up your pass
331331
manager and the PassBuilder will use ``registerPassBuilderCallbacks`` to let
332-
NVPTXTargetMachine::registerPassBuilderCallbacks add the the pass to the
332+
NVPTXTargetMachine::registerPassBuilderCallbacks add the pass to the
333333
pass manager:
334334

335335
.. code-block:: c++

llvm/docs/TableGen/ProgRef.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ The argument values can be specified in two forms:
661661
argument with name ``a`` and ``a1`` will be assigned to the argument with
662662
name ``b``.
663663

664-
Required arguments can alse be specified as named argument.
664+
Required arguments can also be specified as named argument.
665665

666666
Note that the argument can only be specified once regardless of the way (named
667667
or positional) to specify and positional arguments should be put before named

0 commit comments

Comments
 (0)