diff options
Diffstat (limited to 'include/llvm/CodeGen/MachineBasicBlock.h')
-rw-r--r-- | include/llvm/CodeGen/MachineBasicBlock.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index 0f8a158c72..a95103f35f 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -1,20 +1,18 @@ //===-- llvm/CodeGen/MachineCodeForBasicBlock.h -----------------*- C++ -*--=// // -// Purpose: -// Collect the sequence of machine instructions for a basic block. +// Collect the sequence of machine instructions for a basic block. +// //===---------------------------------------------------------------------===// #ifndef LLVM_CODEGEN_MACHINECODEFORBASICBLOCK_H #define LLVM_CODEGEN_MACHINECODEFORBASICBLOCK_H #include "llvm/BasicBlock.h" -#include "llvm/Annotation.h" -#include <vector> class MachineInstr; extern AnnotationID MCFBB_AID; -class MachineCodeForBasicBlock: public Annotation { +class MachineCodeForBasicBlock : public Annotation { std::vector<MachineInstr*> Insts; public: MachineCodeForBasicBlock(); |