File tree Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ SSA_assignment_stept::SSA_assignment_stept(
221
221
exprt _ssa_full_lhs,
222
222
exprt _original_full_lhs,
223
223
exprt _ssa_rhs,
224
- exprt _cond_expr,
225
224
symex_targett::assignment_typet _assignment_type)
226
225
: SSA_stept(source, goto_trace_stept::typet::ASSIGNMENT)
227
226
{
@@ -231,7 +230,7 @@ SSA_assignment_stept::SSA_assignment_stept(
231
230
original_full_lhs = std::move (_original_full_lhs);
232
231
ssa_rhs = std::move (_ssa_rhs);
233
232
assignment_type = _assignment_type;
234
- cond_expr = std::move (_cond_expr );
233
+ cond_expr = equal_exprt (ssa_lhs, ssa_rhs );
235
234
hidden =
236
235
assignment_type != symex_targett::assignment_typet::STATE &&
237
236
assignment_type !=
Original file line number Diff line number Diff line change @@ -205,7 +205,6 @@ class SSA_assignment_stept : public SSA_stept
205
205
exprt ssa_full_lhs,
206
206
exprt original_full_lhs,
207
207
exprt ssa_rhs,
208
- exprt cond_expr,
209
208
symex_targett::assignment_typet assignment_type);
210
209
};
211
210
Original file line number Diff line number Diff line change @@ -121,7 +121,6 @@ void symex_target_equationt::assignment(
121
121
ssa_full_lhs,
122
122
original_full_lhs,
123
123
ssa_rhs,
124
- equal_exprt (ssa_lhs, ssa_rhs),
125
124
assignment_type});
126
125
127
126
merge_ireps (SSA_steps.back ());
You can’t perform that action at this time.
0 commit comments