Changed data structure recording the CFG blocks that need to be backpatched

to labeled blocks from a list to a vector.

llvm-svn: 41274
This commit is contained in:
Ted Kremenek 2007-08-22 15:40:58 +00:00
parent c5a81ebb1f
commit de979aeff3
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class CFGBuilder : public StmtVisitor<CFGBuilder,CFGBlock*> {
typedef llvm::DenseMap<LabelStmt*,CFGBlock*> LabelMapTy;
LabelMapTy LabelMap;
typedef std::list<CFGBlock*> BackpatchBlocksTy;
typedef std::vector<CFGBlock*> BackpatchBlocksTy;
BackpatchBlocksTy BackpatchBlocks;
public: