Skip to content

Commit

Permalink
remark that lhs_object will be deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Kroening committed May 13, 2018
1 parent be037e7 commit c3ec3dd
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/goto-programs/goto_trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,18 @@ class goto_trace_stept
// for assert
std::string comment;

// the object being assigned
// The object being assigned.
// This will get removed, use full_lhs instead.
ssa_exprt lhs_object;

// the full, original lhs expression
// The full, original lhs expression,
// but without dereferencing.
exprt full_lhs;

// A constant with the new value
exprt lhs_object_value, full_lhs_value;
// A constant with the new value.
// lhs_object_value will get removed, use full_lhs_value instead.
exprt lhs_object_value;
exprt full_lhs_value;

// for INPUT/OUTPUT
irep_idt format_string, io_id;
Expand Down

0 comments on commit c3ec3dd

Please sign in to comment.