Prune #includes

llvm-svn: 4295
This commit is contained in:
Chris Lattner 2002-10-27 20:49:47 +00:00
parent b1f02f7f02
commit 32a044b650
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.
//
//===---------------------------------------------------------------------===//
#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.
//
//===---------------------------------------------------------------------===//
#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();