diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2015-04-03 12:36:08 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2015-04-03 12:36:08 +0100 |
commit | 141f052a488c5b76adc658a185032c62d6244b9c (patch) | |
tree | 6944aaaa9d52348c5d7fbc2f61c91866271791c8 /include | |
parent | 55488db3f978dce56ed45836bb72cba827e095b6 (diff) | |
download | klee-141f052a488c5b76adc658a185032c62d6244b9c.tar.gz |
Fixed issue introduce during a previous refactoring, related to field ordering.
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/ExecutionState.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/klee/ExecutionState.h b/include/klee/ExecutionState.h index 067a80a2..32f840f6 100644 --- a/include/klee/ExecutionState.h +++ b/include/klee/ExecutionState.h @@ -75,13 +75,13 @@ private: public: // Execution - Control Flow specific - /// @brief Pointer to instruction which is currently executed - KInstIterator prevPC; - /// @brief Pointer to instruction to be executed after the current /// instruction KInstIterator pc; + /// @brief Pointer to instruction which is currently executed + KInstIterator prevPC; + /// @brief Stack representing the current instruction stream stack_ty stack; @@ -109,11 +109,11 @@ public: /// @brief Exploration depth, i.e., number of times KLEE branched for this state unsigned depth; - /// @brief History of complete path: Represents branches taken to + /// @brief History of complete path: represents branches taken to /// reach/create this state (both concrete and symbolic) TreeOStream pathOS; - /// @brief History of symbolic path: Represents symbolic branches + /// @brief History of symbolic path: represents symbolic branches /// taken to reach/create this state TreeOStream symPathOS; |