diff options
author | Christopher Lamb <christopher.lamb@gmail.com> | 2007-07-26 07:48:21 +0000 |
---|---|---|
committer | Christopher Lamb <christopher.lamb@gmail.com> | 2007-07-26 07:48:21 +0000 |
commit | 08d52071bae2f8cc2e9aa6a451118b83d043813b (patch) | |
tree | 7467f6e03f13c84aad5031e90ba99b9a60f1c622 /include/llvm/Target | |
parent | 518143d7950fb02683b9675e94d42c112ed599c4 (diff) | |
download | external_llvm-08d52071bae2f8cc2e9aa6a451118b83d043813b.zip external_llvm-08d52071bae2f8cc2e9aa6a451118b83d043813b.tar.gz external_llvm-08d52071bae2f8cc2e9aa6a451118b83d043813b.tar.bz2 |
Add target independent MachineInstr's to represent subreg insert/extract in MBB's. PR1350
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40518 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r-- | include/llvm/Target/TargetInstrInfo.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index 25fb79f..7accaf5 100644 --- a/include/llvm/Target/TargetInstrInfo.h +++ b/include/llvm/Target/TargetInstrInfo.h @@ -177,7 +177,9 @@ public: enum { PHI = 0, INLINEASM = 1, - LABEL = 2 + LABEL = 2, + EXTRACT_SUBREG = 3, + INSERT_SUBREG = 4 }; unsigned getNumOpcodes() const { return NumOpcodes; } |