First chunk of MachineInstr bundle support.
[oota-llvm.git] / include / llvm / Target / Target.td
index 8582015e7794098defdf45d6d8fc994c8afd19a6..26e59e452f57e54c3917be195f249f558ff7d6d1 100644 (file)
@@ -688,6 +688,11 @@ def COPY : Instruction {
   let neverHasSideEffects = 1;
   let isAsCheapAsAMove = 1;
 }
+def BUNDLE : Instruction {
+  let OutOperandList = (outs);
+  let InOperandList = (ins variable_ops);
+  let AsmString = "BUNDLE";
+}
 }
 
 //===----------------------------------------------------------------------===//