[llvm-commits] CVS: llvm/lib/CodeGen/RegAllocSimple.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Dec 15 12:20:01 PST 2002
Changes in directory llvm/lib/CodeGen:
RegAllocSimple.cpp updated: 1.14 -> 1.15
---
Log message:
Prune #includes
---
Diffs of the changes:
Index: llvm/lib/CodeGen/RegAllocSimple.cpp
diff -u llvm/lib/CodeGen/RegAllocSimple.cpp:1.14 llvm/lib/CodeGen/RegAllocSimple.cpp:1.15
--- llvm/lib/CodeGen/RegAllocSimple.cpp:1.14 Sun Dec 15 12:15:24 2002
+++ llvm/lib/CodeGen/RegAllocSimple.cpp Sun Dec 15 12:19:24 2002
@@ -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 <iostream>
namespace {
struct RegAllocSimple : public FunctionPass {
More information about the llvm-commits
mailing list