diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2015-04-02 15:38:39 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2015-04-02 15:38:39 +0100 |
commit | e0da9c342eca9949e6501bc8770942624ab645a9 (patch) | |
tree | 7aedb432bce06ef06045c54445a5c3e51561526d /include | |
parent | 4ae0b4aa8a0d5446c31454fa09e651abae4764a3 (diff) | |
download | klee-e0da9c342eca9949e6501bc8770942624ab645a9.tar.gz |
Removed unused fakeState field from ExecutionState
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/ExecutionState.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/klee/ExecutionState.h b/include/klee/ExecutionState.h index 5830ad28..73095afc 100644 --- a/include/klee/ExecutionState.h +++ b/include/klee/ExecutionState.h @@ -117,9 +117,6 @@ public: /// taken to reach/create this state TreeOStream symPathOS; - /// @brief Does not represent a real state just for patching purposes - bool fakeState; - /// @brief Counts how many instructions were executed since the last new /// instruction was covered. unsigned instsSinceCovNew; @@ -149,7 +146,7 @@ public: void removeFnAlias(std::string fn); private: - ExecutionState() : fakeState(false), ptreeNode(0) {} + ExecutionState() : ptreeNode(0) {} public: ExecutionState(KFunction *kf); |