From: Hiroshi Inoue Date: Fri, 15 Jun 2018 05:10:09 +0000 (+0000) Subject: [NFC] fix trivial typos in documents X-Git-Tag: llvmorg-7.0.0-rc1~3668 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c36a1f1cb700acad32de167f5854bd5264f2407c;p=platform%2Fupstream%2Fllvm.git [NFC] fix trivial typos in documents llvm-svn: 334799 --- diff --git a/llvm/docs/CodeGenerator.rst b/llvm/docs/CodeGenerator.rst index 7329f3d..c0e3d53 100644 --- a/llvm/docs/CodeGenerator.rst +++ b/llvm/docs/CodeGenerator.rst @@ -566,7 +566,7 @@ MI bundle support does not change the physical representations of 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 diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index c95fca8..9ec7723 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -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 diff --git a/llvm/docs/MIRLangRef.rst b/llvm/docs/MIRLangRef.rst index 3c299de..9d65a52 100644 --- a/llvm/docs/MIRLangRef.rst +++ b/llvm/docs/MIRLangRef.rst @@ -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 `, but they can also be used in a number of other places, like the :ref:`basic block's live in list `. diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst index 9ce64ab..198225d 100644 --- a/llvm/docs/ProgrammersManual.rst +++ b/llvm/docs/ProgrammersManual.rst @@ -3721,7 +3721,7 @@ Important Subclasses of the ``Instruction`` class * ``CmpInst`` - This subclass respresents the two comparison instructions, + This subclass represents the two comparison instructions, `ICmpInst `_ (integer opreands), and `FCmpInst `_ (floating point operands).