From 5d78db2afb53ab7c1898349019e915a5004d18ca Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Sun, 19 May 2002 15:41:33 +0000 Subject: InstrnsBefore and InstrnsAfter are now vectors instead of deques. May be slightly less efficient but significantly reduces special cases interfaces in code generation. llvm-svn: 2649 --- llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/CodeGen') diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h index 5c27700d9d6..29f872fe09c 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; -- cgit v1.2.3