From: Chris Lattner Date: Mon, 20 May 2002 17:38:26 +0000 (+0000) Subject: Don't lose namespace qualifications on previous patch. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5245f853c54e422b3004d5f80d2aaaebbceb8468;p=oota-llvm.git Don't lose namespace qualifications on previous patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2664 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/lib/CodeGen/RegAlloc/PhyRegAlloc.h index 29f872fe09c..5df4381e3ee 100644 --- a/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/lib/CodeGen/RegAlloc/PhyRegAlloc.h @@ -51,8 +51,8 @@ class LoopInfo; //---------------------------------------------------------------------------- struct AddedInstrns { - vector InstrnsBefore;// Added insts BEFORE an existing inst - vector InstrnsAfter; // Added insts AFTER an existing inst + std::vector InstrnsBefore;// Added insts BEFORE an existing inst + std::vector InstrnsAfter; // Added insts AFTER an existing inst }; typedef std::map AddedInstrMapType; diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h index 29f872fe09c..5df4381e3ee 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h @@ -51,8 +51,8 @@ class LoopInfo; //---------------------------------------------------------------------------- struct AddedInstrns { - vector InstrnsBefore;// Added insts BEFORE an existing inst - vector InstrnsAfter; // Added insts AFTER an existing inst + std::vector InstrnsBefore;// Added insts BEFORE an existing inst + std::vector InstrnsAfter; // Added insts AFTER an existing inst }; typedef std::map AddedInstrMapType;