summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp')
-rw-r--r--gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp b/gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
index 5b917a7a27f..614f676fb19 100644
--- a/gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
+++ b/gnu/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
@@ -22,9 +22,7 @@
using namespace clang;
-// The number of ValueDecls we want to keep track of by default (per-function)
-#define VARDECL_SET_SIZE 256
-typedef llvm::SmallPtrSet<const VarDecl*, VARDECL_SET_SIZE> VarDeclSet;
+typedef llvm::SmallPtrSet<const VarDecl*, 32> VarDeclSet;
PseudoConstantAnalysis::PseudoConstantAnalysis(const Stmt *DeclBody) :
DeclBody(DeclBody), Analyzed(false) {