From abe8dd592d1c2e4e604e39fcf4598642fd6ea197 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 15 Dec 2002 18:19:24 +0000 Subject: [PATCH] Prune #includes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5044 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/RegAllocSimple.cpp | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/lib/CodeGen/RegAllocSimple.cpp b/lib/CodeGen/RegAllocSimple.cpp index b84d2b8ea49..8dc4cf83803 100644 --- a/lib/CodeGen/RegAllocSimple.cpp +++ b/lib/CodeGen/RegAllocSimple.cpp @@ -4,18 +4,12 @@ // //===----------------------------------------------------------------------===// -#include "llvm/Function.h" -#include "llvm/iTerminators.h" -#include "llvm/Type.h" -#include "llvm/Constants.h" -#include "llvm/Pass.h" #include "llvm/CodeGen/MachineFunction.h" -#include "llvm/CodeGen/MachineInstrBuilder.h" +#include "llvm/CodeGen/MachineInstr.h" #include "llvm/Target/MachineInstrInfo.h" -#include "llvm/Target/MRegisterInfo.h" #include "llvm/Target/TargetMachine.h" -#include "llvm/Support/InstVisitor.h" #include "Support/Statistic.h" +#include namespace { struct RegAllocSimple : public FunctionPass {