1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Slightly increase default set size. It's cheap and won't hurt.

llvm-svn: 48682
This commit is contained in:
Anton Korobeynikov 2008-03-22 07:48:40 +00:00
parent f858d272a8
commit 6ba56eb5e7

View File

@ -232,7 +232,7 @@ const GlobalValue *GlobalAlias::getAliasedGlobal() const {
}
const GlobalValue *GlobalAlias::resolveAliasedGlobal() const {
SmallPtrSet<const GlobalValue*, 1> Visited;
SmallPtrSet<const GlobalValue*, 3> Visited;
const GlobalValue *GV = getAliasedGlobal();
Visited.insert(GV);