diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h index 5c27700d9d66..29f872fe09ca 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h @@ -32,7 +32,7 @@ #include "llvm/CodeGen/RegClass.h" #include "llvm/CodeGen/LiveRangeInfo.h" -#include +#include #include class MachineCodeForMethod; @@ -51,8 +51,8 @@ class LoopInfo; //---------------------------------------------------------------------------- struct AddedInstrns { - std::deque InstrnsBefore;// Added insts BEFORE an existing inst - std::deque InstrnsAfter; // Added insts AFTER an existing inst + vector InstrnsBefore;// Added insts BEFORE an existing inst + vector InstrnsAfter; // Added insts AFTER an existing inst }; typedef std::map AddedInstrMapType;