forked from OSchip/llvm-project
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:
parent
c5a81ebb1f
commit
de979aeff3
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue