summaryrefslogtreecommitdiff
path: root/docs/CodeGenerator.rst
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-11-02 18:06:51 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-11-02 18:06:51 +0000
commitbb4c23ff49ba5f6b76793425278196b3fd0aef31 (patch)
tree4f6c703f14db5d71c0d01aa18ff5d613437a7ba7 /docs/CodeGenerator.rst
parent9ce84c1c95c0153a2f33e188ce0db00770425f9e (diff)
downloadllvm-bb4c23ff49ba5f6b76793425278196b3fd0aef31.tar.gz
llvm-bb4c23ff49ba5f6b76793425278196b3fd0aef31.tar.bz2
llvm-bb4c23ff49ba5f6b76793425278196b3fd0aef31.tar.xz
Documentation: fix typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167302 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodeGenerator.rst')
-rw-r--r--docs/CodeGenerator.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CodeGenerator.rst b/docs/CodeGenerator.rst
index 900fb8a81f..37a2eccd2a 100644
--- a/docs/CodeGenerator.rst
+++ b/docs/CodeGenerator.rst
@@ -224,7 +224,7 @@ The ``DataLayout`` class
------------------------
The ``DataLayout`` class is the only required target description class, and it
-is the only class that is not extensible (you cannot derived a new class from
+is the only class that is not extensible (you cannot derive a new class from
it). ``DataLayout`` specifies information about how the target lays out memory
for structures, the alignment requirements for various data types, the size of
pointers in the target, and whether the target is little-endian or
@@ -248,7 +248,7 @@ operations. Among other things, this class indicates:
* the type to use for shift amounts, and
* various high-level characteristics, like whether it is profitable to turn
- division by a constant into a multiplication sequence
+ division by a constant into a multiplication sequence.
The ``TargetRegisterInfo`` class
--------------------------------