aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineInstr.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r--include/llvm/CodeGen/MachineInstr.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h
index bb2f930d5f..a26c61accc 100644
--- a/include/llvm/CodeGen/MachineInstr.h
+++ b/include/llvm/CodeGen/MachineInstr.h
@@ -303,7 +303,7 @@ public:
//---------------------------------------------------------------------------
-// class MachineInstructionsForVMInstr
+// class MachineCodeForVMInstr
//
// Purpose:
// Representation of the sequence of machine instructions created
@@ -356,6 +356,23 @@ MachineCodeForVMInstr::~MachineCodeForVMInstr()
delete (*this)[i];
}
+
+//---------------------------------------------------------------------------
+// class MachineCodeForBasicBlock
+//
+// Purpose:
+// Representation of the sequence of machine instructions created
+// for a basic block.
+//---------------------------------------------------------------------------
+
+
+class MachineCodeForBasicBlock: public vector<const MachineInstr*> {
+public:
+ typedef vector<const MachineInstr*>::iterator iterator;
+ typedef vector<const MachineInstr*>::const_iterator const_iterator;
+};
+
+
//---------------------------------------------------------------------------
// Target-independent utility routines for creating machine instructions
//---------------------------------------------------------------------------