commit | 0f040a258ff6a2372fc232212b5e4189e8e7185d | [log] [tgz] |
---|---|---|
author | Evan Cheng <evan.cheng@apple.com> | Tue Mar 15 05:09:26 2011 +0000 |
committer | Evan Cheng <evan.cheng@apple.com> | Tue Mar 15 05:09:26 2011 +0000 |
tree | 0e53a4efd96b8a1ffe81e53b5c9961cdcfe9407e | |
parent | b1a6eab655adce4f84a15afa9092e814b9aaabda [diff] [blame] |
- Add "Bitcast" target instruction property for instructions which perform nothing more than a bitcast. - Teach tablegen to automatically infer "Bitcast" property. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127667 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/CodeGenInstruction.h b/utils/TableGen/CodeGenInstruction.h index 5f53121..6d2d8fb 100644 --- a/utils/TableGen/CodeGenInstruction.h +++ b/utils/TableGen/CodeGenInstruction.h
@@ -215,6 +215,7 @@ bool isIndirectBranch; bool isCompare; bool isMoveImm; + bool isBitcast; bool isBarrier; bool isCall; bool canFoldAsLoad;