From 1f8d21e233bd3996595b55f4f673089de8001c44 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 30 Sep 2003 20:13:59 +0000 Subject: [PATCH] include passes.h which defines the interface this file exposes llvm-svn: 8793 --- llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp index 0c55219979bd..616b012d77ed 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp +++ b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp @@ -17,22 +17,22 @@ #include "RegAllocCommon.h" #include "RegClass.h" #include "IGNode.h" +#include "llvm/CodeGen/FunctionLiveVarInfo.h" +#include "llvm/CodeGen/InstrSelection.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineInstrAnnot.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineFunctionInfo.h" -#include "llvm/CodeGen/FunctionLiveVarInfo.h" -#include "llvm/CodeGen/InstrSelection.h" +#include "llvm/CodeGen/Passes.h" #include "llvm/Analysis/LoopInfo.h" #include "llvm/Target/TargetInstrInfo.h" -#include "llvm/Function.h" #include "llvm/Type.h" #include "llvm/iOther.h" #include "llvm/DerivedTypes.h" #include "llvm/Constants.h" -#include "llvm/Support/InstIterator.h" #include "llvm/Module.h" +#include "llvm/Support/InstIterator.h" #include "Support/STLExtras.h" #include "Support/SetOperations.h" #include "Support/CommandLine.h"