We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4a9475 commit 2a75ab4Copy full SHA for 2a75ab4
src/path-symex/path_symex.cpp
@@ -922,6 +922,7 @@ void path_symext::operator()(
922
case RETURN:
923
// sets the return value
924
state.record_step();
925
+ state.next_pc();
926
927
if(instruction.code.operands().size()==1)
928
set_return_value(state, instruction.code.op0());
src/symex/path_search.cpp
@@ -76,7 +76,8 @@ path_searcht::resultt path_searcht::operator()(
76
// record we have seen it
77
loc_data[state.get_pc().loc_number].visited=true;
78
79
- debug() << "Queue: " << queue.size()
+ debug() << "Loc: #" << state.get_pc().loc_number
80
+ << ", queue: " << queue.size()
81
<< ", depth: " << state.get_depth();
82
for(const auto & s : queue)
83
debug() << ' ' << s.get_depth();
0 commit comments