diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-07-06 21:33:38 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-07-06 21:33:38 +0000 |
commit | f3fd36e0f5238d338a94241c0a1d9f6b2fba076e (patch) | |
tree | 4967bdc7dff513be6396f7f80d82f264fa58f58e /llvm/utils/TableGen/CodeGenInstruction.h | |
parent | a3cbf52a57220ce485543696fe4db95912199b0d (diff) | |
download | bcm5719-llvm-f3fd36e0f5238d338a94241c0a1d9f6b2fba076e.tar.gz bcm5719-llvm-f3fd36e0f5238d338a94241c0a1d9f6b2fba076e.zip |
Don't require pseudo-instructions to carry encoding information.
For now this is distinct from isCodeGenOnly, as code-gen-only
instructions can (and often do) still have encoding information
associated with them. Once we've migrated all of them over to true
pseudo-instructions that are lowered to real instructions prior to
the printer/emitter, we can remove isCodeGenOnly and just use isPseudo.
llvm-svn: 134539
Diffstat (limited to 'llvm/utils/TableGen/CodeGenInstruction.h')
-rw-r--r-- | llvm/utils/TableGen/CodeGenInstruction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenInstruction.h b/llvm/utils/TableGen/CodeGenInstruction.h index 5f1e0bea766..ad39722ab0f 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.h +++ b/llvm/utils/TableGen/CodeGenInstruction.h @@ -235,6 +235,7 @@ namespace llvm { bool isAsCheapAsAMove; bool hasExtraSrcRegAllocReq; bool hasExtraDefRegAllocReq; + bool isPseudo; CodeGenInstruction(Record *R); |