[analyzer] Fix member initialization order. No functionality change.

llvm-svn: 138999
This commit is contained in:
Jordy Rose 2011-09-02 06:21:26 +00:00
parent c49ec53e29
commit a87a2775fa
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ ExprEngine::ExprEngine(AnalysisManager &mgr, bool gcEnabled)
EntryNode(NULL), currentStmt(NULL),
NSExceptionII(NULL), NSExceptionInstanceRaiseSelectors(NULL),
RaiseSel(GetNullarySelector("raise", getContext())),
BR(mgr, *this), ObjCGCEnabled(gcEnabled) {
ObjCGCEnabled(gcEnabled), BR(mgr, *this) {
if (mgr.shouldEagerlyTrimExplodedGraph()) {
// Enable eager node reclaimation when constructing the ExplodedGraph.