From 132214434400b49d3a8d0a33d65fda141433e28b Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Thu, 2 Apr 2015 15:00:11 +0100 Subject: Removed underConstrained field, which I believe was re-introduced by mistake in the last cleanup commit. --- lib/Core/ExecutionState.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/Core') diff --git a/lib/Core/ExecutionState.cpp b/lib/Core/ExecutionState.cpp index 1dc08624..bfe56f7a 100644 --- a/lib/Core/ExecutionState.cpp +++ b/lib/Core/ExecutionState.cpp @@ -67,7 +67,6 @@ StackFrame::~StackFrame() { /***/ ExecutionState::ExecutionState(KFunction *kf) : - underConstrained(0), pc(kf->instructions), prevPC(pc), @@ -84,7 +83,7 @@ ExecutionState::ExecutionState(KFunction *kf) : } ExecutionState::ExecutionState(const std::vector > &assumptions) - : underConstrained(0), constraints(assumptions), queryCost(0.), + : constraints(assumptions), queryCost(0.), fakeState(true), ptreeNode(0) {} ExecutionState::~ExecutionState() { @@ -102,7 +101,6 @@ ExecutionState::~ExecutionState() { ExecutionState::ExecutionState(const ExecutionState& state): fnAliases(state.fnAliases), - underConstrained(state.underConstrained), pc(state.pc), prevPC(state.prevPC), stack(state.stack), -- cgit 1.4.1