diff options
author | Eli Bendersky <eliben@google.com> | 2013-01-30 20:54:21 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2013-01-30 20:54:21 +0000 |
commit | 0b85ba7d9e61a49425f3bea012ef8295d9d83e31 (patch) | |
tree | 614a859076f3da678f8f80ccbdd68b0784a13d17 /llvm/docs/CodeGenerator.rst | |
parent | a94bd438f8ddc3013b5122d2ba1648ce5a428df0 (diff) | |
download | bcm5719-llvm-0b85ba7d9e61a49425f3bea012ef8295d9d83e31.tar.gz bcm5719-llvm-0b85ba7d9e61a49425f3bea012ef8295d9d83e31.zip |
Remove a mention of TargetInstrDescriptor, which no longer exists in the code
llvm-svn: 173971
Diffstat (limited to 'llvm/docs/CodeGenerator.rst')
-rw-r--r-- | llvm/docs/CodeGenerator.rst | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/docs/CodeGenerator.rst b/llvm/docs/CodeGenerator.rst index 0393d317bb8..b5d41809744 100644 --- a/llvm/docs/CodeGenerator.rst +++ b/llvm/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 ----------------------------- |