Skip to content

Commit 0f190d3

Browse files
author
Daniel Kroening
committed
remark that lhs_object will be deprecated
1 parent e82dca0 commit 0f190d3

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/goto-programs/goto_trace.h

+8-4
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,18 @@ class goto_trace_stept
104104
// for assert
105105
std::string comment;
106106

107-
// the object being assigned
107+
// The object being assigned.
108+
// This will get removed, use full_lhs instead.
108109
ssa_exprt lhs_object;
109110

110-
// the full, original lhs expression
111+
// The full, original lhs expression,
112+
// but without dereferencing.
111113
exprt full_lhs;
112114

113-
// A constant with the new value
114-
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;
115119

116120
// for INPUT/OUTPUT
117121
irep_idt format_string, io_id;

0 commit comments

Comments
 (0)