From 4f7b483b7e9ba0170a8c1cd3d8be3e972b31fe36 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 20 Aug 2008 16:59:15 +0000 Subject: [PATCH] Patch by Zhongxing Xu: We should set back the modified ConstEq map. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55060 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/GRState.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Analysis/GRState.cpp b/lib/Analysis/GRState.cpp index 23467e2046..c9494fe7ea 100644 --- a/lib/Analysis/GRState.cpp +++ b/lib/Analysis/GRState.cpp @@ -144,7 +144,8 @@ GRStateManager::RemoveDeadBindings(const GRState* St, Stmt* Loc, CE = CEFactory.Remove(CE, sym); } } - + state = state.set(CE); + ConstNotEqTy CNE = state.get(); ConstNotEqTy::Factory& CNEFactory = state.get_context(); -- 2.50.1