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 cd95f2b commit 9b3eea0Copy full SHA for 9b3eea0
src/ssa/ssa_build_goto_trace.cpp
@@ -168,11 +168,6 @@ bool ssa_build_goto_tracet::record_step(
168
169
case ASSIGN:
170
{
171
- if(has_prefix(
172
- id2string(unwindable_local_SSA.function_identifier),
173
- CPROVER_PREFIX))
174
- break;
175
-
176
const code_assignt &code_assign=
177
to_code_assign(current_pc->code);
178
@@ -182,6 +177,8 @@ bool ssa_build_goto_tracet::record_step(
182
exprt rhs_simplified=simplify_expr(rhs_value, unwindable_local_SSA.ns);
183
exprt lhs_ssa=finalize_lhs(code_assign.lhs());
184
179
exprt lhs_simplified=simplify_expr(lhs_ssa, unwindable_local_SSA.ns);
180
+ if(from_expr(lhs_simplified).find(CPROVER_PREFIX)!=std::string::npos)
181
+ break;
185
186
#if 0
187
std::cout << "ASSIGN "
0 commit comments