diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-03-15 05:09:26 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-03-15 05:09:26 +0000 |
commit | 880e299dcda6d8a79fd178e19a6bb44ce03e39eb (patch) | |
tree | 53585b5f0ea66cf4f9b87cc089f6788656140d11 /llvm/utils/TableGen/CodeGenInstruction.h | |
parent | c8c4e5f37103d9b66ba95e40a027e98fa3cb41e4 (diff) | |
download | bcm5719-llvm-880e299dcda6d8a79fd178e19a6bb44ce03e39eb.tar.gz bcm5719-llvm-880e299dcda6d8a79fd178e19a6bb44ce03e39eb.zip |
- Add "Bitcast" target instruction property for instructions which perform
nothing more than a bitcast.
- Teach tablegen to automatically infer "Bitcast" property.
llvm-svn: 127667
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 5f53121414b..6d2d8fba0cf 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.h +++ b/llvm/utils/TableGen/CodeGenInstruction.h @@ -215,6 +215,7 @@ namespace llvm { bool isIndirectBranch; bool isCompare; bool isMoveImm; + bool isBitcast; bool isBarrier; bool isCall; bool canFoldAsLoad; |