mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 00:31:54 +00:00
switch an std::set over to a SmallPtrSet, speeding up mem2reg 6% on 176.gcc.
llvm-svn: 33929
This commit is contained in:
parent
19e7a5695d
commit
9a99e6ee24
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user