summaryrefslogtreecommitdiff
path: root/utils/TableGen/InstrInfoEmitter.cpp
diff options
context:
space:
mode:
authorChristopher Lamb <christopher.lamb@gmail.com>2007-07-26 07:48:21 +0000
committerChristopher Lamb <christopher.lamb@gmail.com>2007-07-26 07:48:21 +0000
commit08d52071bae2f8cc2e9aa6a451118b83d043813b (patch)
tree7467f6e03f13c84aad5031e90ba99b9a60f1c622 /utils/TableGen/InstrInfoEmitter.cpp
parent518143d7950fb02683b9675e94d42c112ed599c4 (diff)
downloadllvm-08d52071bae2f8cc2e9aa6a451118b83d043813b.tar.gz
llvm-08d52071bae2f8cc2e9aa6a451118b83d043813b.tar.bz2
llvm-08d52071bae2f8cc2e9aa6a451118b83d043813b.tar.xz
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 'utils/TableGen/InstrInfoEmitter.cpp')
-rw-r--r--utils/TableGen/InstrInfoEmitter.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp
index da2308e9e4..9a5dd2bda7 100644
--- a/utils/TableGen/InstrInfoEmitter.cpp
+++ b/utils/TableGen/InstrInfoEmitter.cpp
@@ -325,7 +325,9 @@ void InstrInfoEmitter::emitShiftedValue(Record *R, StringInit *Val,
// This isn't an error if this is a builtin instruction.
if (R->getName() != "PHI" &&
R->getName() != "INLINEASM" &&
- R->getName() != "LABEL")
+ R->getName() != "LABEL" &&
+ R->getName() != "EXTRACT_SUBREG" &&
+ R->getName() != "INSERT_SUBREG")
throw R->getName() + " doesn't have a field named '" +
Val->getValue() + "'!";
return;