From: Anton Korobeynikov Date: Sat, 22 Mar 2008 07:48:40 +0000 (+0000) Subject: Slightly increase default set size. It's cheap and won't hurt. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=89a3d3f25cf58c940189d87356141d2610042d58;p=oota-llvm.git Slightly increase default set size. It's cheap and won't hurt. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48682 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Globals.cpp b/lib/VMCore/Globals.cpp index d66d351bc23..e75b1867a99 100644 --- a/lib/VMCore/Globals.cpp +++ b/lib/VMCore/Globals.cpp @@ -232,7 +232,7 @@ const GlobalValue *GlobalAlias::getAliasedGlobal() const { } const GlobalValue *GlobalAlias::resolveAliasedGlobal() const { - SmallPtrSet Visited; + SmallPtrSet Visited; const GlobalValue *GV = getAliasedGlobal(); Visited.insert(GV);