summaryrefslogtreecommitdiff
path: root/docs/CodeGenerator.rst
diff options
context:
space:
mode:
authorEli Bendersky <eliben@google.com>2013-01-30 20:54:21 +0000
committerEli Bendersky <eliben@google.com>2013-01-30 20:54:21 +0000
commit2f89e8144b960468e4135f6d17cb6aac69197cbb (patch)
tree77a221a562089956a635211f8fb459664d9e5fc5 /docs/CodeGenerator.rst
parente70de1f462ca26c17f39d36c91e4784ff035f90d (diff)
downloadllvm-2f89e8144b960468e4135f6d17cb6aac69197cbb.tar.gz
llvm-2f89e8144b960468e4135f6d17cb6aac69197cbb.tar.bz2
llvm-2f89e8144b960468e4135f6d17cb6aac69197cbb.tar.xz
Remove a mention of TargetInstrDescriptor, which no longer exists in the code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173971 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodeGenerator.rst')
-rw-r--r--docs/CodeGenerator.rst10
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/CodeGenerator.rst b/docs/CodeGenerator.rst
index 0393d317bb..b5d4180974 100644
--- a/docs/CodeGenerator.rst
+++ b/docs/CodeGenerator.rst
@@ -285,12 +285,10 @@ The ``TargetInstrInfo`` class
-----------------------------
The ``TargetInstrInfo`` class is used to describe the machine instructions
-supported by the target. It is essentially an array of ``TargetInstrDescriptor``
-objects, each of which describes one instruction the target
-supports. Descriptors define things like the mnemonic for the opcode, the number
-of operands, the list of implicit register uses and defs, whether the
-instruction has certain target-independent properties (accesses memory, is
-commutable, etc), and holds any target-specific flags.
+supported by the target. Descriptions define things like the mnemonic for
+the opcode, the number of operands, the list of implicit register uses and defs,
+whether the instruction has certain target-independent properties (accesses
+memory, is commutable, etc), and holds any target-specific flags.
The ``TargetFrameInfo`` class
-----------------------------