Add isRegSequence property.
[oota-llvm.git] / utils / TableGen / CodeGenInstruction.cpp
index 1e8daf5b09bfeff81b78c911209a0cdb37cbdd5b..179858d7632e9fae20f6967cea6caaf14b7f6c0d 100644 (file)
@@ -314,6 +314,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R)
   hasPostISelHook = R->getValueAsBit("hasPostISelHook");
   hasCtrlDep   = R->getValueAsBit("hasCtrlDep");
   isNotDuplicable = R->getValueAsBit("isNotDuplicable");
+  isRegSequence = R->getValueAsBit("isRegSequence");
 
   bool Unset;
   mayLoad      = R->getValueAsBitOrUnset("mayLoad", Unset);