Remove ARM isel hacks that fold large immediates into a pair of add, sub, and,
[oota-llvm.git] / utils / TableGen / InstrInfoEmitter.cpp
index e04ab6c4ef96c36c244cef862d43a3e4d70defef..2b684bede3ea44a8d4760e67b61f318e3f32e260 100644 (file)
@@ -271,6 +271,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
   if (Inst.isBranch)           OS << "|(1<<TID::Branch)";
   if (Inst.isIndirectBranch)   OS << "|(1<<TID::IndirectBranch)";
   if (Inst.isCompare)          OS << "|(1<<TID::Compare)";
+  if (Inst.isMoveImm)          OS << "|(1<<TID::MoveImm)";
   if (Inst.isBarrier)          OS << "|(1<<TID::Barrier)";
   if (Inst.hasDelaySlot)       OS << "|(1<<TID::DelaySlot)";
   if (Inst.isCall)             OS << "|(1<<TID::Call)";