From: Chris Lattner Date: Sun, 15 Dec 2002 18:19:24 +0000 (+0000) Subject: Prune #includes X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=abe8dd592d1c2e4e604e39fcf4598642fd6ea197;p=oota-llvm.git Prune #includes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5044 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 {