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 e82dca0 commit 0f190d3Copy full SHA for 0f190d3
src/goto-programs/goto_trace.h
@@ -104,14 +104,18 @@ class goto_trace_stept
104
// for assert
105
std::string comment;
106
107
- // the object being assigned
+ // The object being assigned.
108
+ // This will get removed, use full_lhs instead.
109
ssa_exprt lhs_object;
110
- // the full, original lhs expression
111
+ // The full, original lhs expression,
112
+ // but without dereferencing.
113
exprt full_lhs;
114
- // A constant with the new value
- exprt lhs_object_value, full_lhs_value;
115
+ // A constant with the new value.
116
+ // lhs_object_value will get removed, use full_lhs_value instead.
117
+ exprt lhs_object_value;
118
+ exprt full_lhs_value;
119
120
// for INPUT/OUTPUT
121
irep_idt format_string, io_id;
0 commit comments