[llvm] r334799 - [NFC] fix trivial typos in documents
Hiroshi Inoue via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 14 22:10:09 PDT 2018
Author: inouehrs
Date: Thu Jun 14 22:10:09 2018
New Revision: 334799
URL: http://llvm.org/viewvc/llvm-project?rev=334799&view=rev
Log:
[NFC] fix trivial typos in documents
Modified:
llvm/trunk/docs/CodeGenerator.rst
llvm/trunk/docs/LangRef.rst
llvm/trunk/docs/MIRLangRef.rst
llvm/trunk/docs/ProgrammersManual.rst
Modified: llvm/trunk/docs/CodeGenerator.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodeGenerator.rst?rev=334799&r1=334798&r2=334799&view=diff
==============================================================================
--- llvm/trunk/docs/CodeGenerator.rst (original)
+++ llvm/trunk/docs/CodeGenerator.rst Thu Jun 14 22:10:09 2018
@@ -566,7 +566,7 @@ MI bundle support does not change the ph
MachineBasicBlock and MachineInstr. All the MIs (including top level and nested
ones) are stored as sequential list of MIs. The "bundled" MIs are marked with
the 'InsideBundle' flag. A top level MI with the special BUNDLE opcode is used
-to represent the start of a bundle. It's legal to mix BUNDLE MIs with indiviual
+to represent the start of a bundle. It's legal to mix BUNDLE MIs with individual
MIs that are not inside bundles nor represent bundles.
MachineInstr passes should operate on a MI bundle as a single unit. Member
Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=334799&r1=334798&r2=334799&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Thu Jun 14 22:10:09 2018
@@ -1703,10 +1703,10 @@ example:
the ELF x86-64 abi, but it can be disabled for some compilation
units.
``nocf_check``
- This attribute indicates that no control-flow check will be perfomed on
+ This attribute indicates that no control-flow check will be performed on
the attributed entity. It disables -fcf-protection=<> for a specific
entity to fine grain the HW control flow protection mechanism. The flag
- is target independant and currently appertains to a function or function
+ is target independent and currently appertains to a function or function
pointer.
``shadowcallstack``
This attribute indicates that the ShadowCallStack checks are enabled for
Modified: llvm/trunk/docs/MIRLangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/MIRLangRef.rst?rev=334799&r1=334798&r2=334799&view=diff
==============================================================================
--- llvm/trunk/docs/MIRLangRef.rst (original)
+++ llvm/trunk/docs/MIRLangRef.rst Thu Jun 14 22:10:09 2018
@@ -397,7 +397,7 @@ Registers
---------
Registers are one of the key primitives in the machine instructions
-serialization language. They are primarly used in the
+serialization language. They are primarily used in the
:ref:`register machine operands <register-operands>`,
but they can also be used in a number of other places, like the
:ref:`basic block's live in list <bb-liveins>`.
Modified: llvm/trunk/docs/ProgrammersManual.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.rst?rev=334799&r1=334798&r2=334799&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Thu Jun 14 22:10:09 2018
@@ -3721,7 +3721,7 @@ Important Subclasses of the ``Instructio
* ``CmpInst``
- This subclass respresents the two comparison instructions,
+ This subclass represents the two comparison instructions,
`ICmpInst <LangRef.html#i_icmp>`_ (integer opreands), and
`FCmpInst <LangRef.html#i_fcmp>`_ (floating point operands).
More information about the llvm-commits
mailing list