Prune #includes

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4295 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-10-27 20:49:47 +00:00
parent df6f5835e9
commit e8b5413e5d
2 changed files with 6 additions and 10 deletions

View File

@ -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();

View File

@ -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();