switch an std::set over to a SmallPtrSet, speeding up mem2reg 6% on 176.gcc.

llvm-svn: 33929
This commit is contained in:
Chris Lattner 2007-02-05 22:15:21 +00:00
parent 19e7a5695d
commit 9a99e6ee24

View File

@ -84,7 +84,7 @@ namespace {
/// Visited - The set of basic blocks the renamer has already visited.
///
std::set<BasicBlock*> Visited;
SmallPtrSet<BasicBlock*, 16> Visited;
/// BBNumbers - Contains a stable numbering of basic blocks to avoid
/// non-determinstic behavior.