aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Driver/AnalysisConsumer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Driver/AnalysisConsumer.cpp b/Driver/AnalysisConsumer.cpp
index 5d9f896173..df46322b5e 100644
--- a/Driver/AnalysisConsumer.cpp
+++ b/Driver/AnalysisConsumer.cpp
@@ -362,13 +362,13 @@ static void ActionGRExprEngine(AnalysisManager& mgr, GRTransferFuncs* tf,
llvm::OwningPtr<GRTransferFuncs> TF(tf);
+ // Display progress.
+ mgr.DisplayFunction();
+
// Construct the analysis engine.
LiveVariables* L = mgr.getLiveVariables();
if (!L) return;
-
- // Display progress.
- mgr.DisplayFunction();
-
+
GRExprEngine Eng(*mgr.getCFG(), *mgr.getCodeDecl(), mgr.getContext(), *L,
mgr.getStoreManagerCreator());