@@ -137,9 +137,9 @@ void goto_symext::symex_other(
137
137
// 3. build an assignment where the type on lhs and rhs is:
138
138
// - array_copy: the type of the first array (even if the second is smaller)
139
139
// - array_replace: the type of the second array (even if it is smaller)
140
- DATA_INVARIANT (
141
- code.operands ().size () == 2 ,
142
- " expected array copy/array replace statement to have two operands" );
140
+ DATA_INVARIANT (
141
+ code.operands ().size () == 2 ,
142
+ " expected array copy/array replace statement to have two operands" );
143
143
144
144
// we need to add dereferencing for both operands
145
145
dereference_exprt dest_array (code.op0 ());
@@ -188,8 +188,8 @@ void goto_symext::symex_other(
188
188
// 3. use the type of the resulting array to construct an array_of
189
189
// expression
190
190
DATA_INVARIANT (
191
- code.operands ().size () == 2 ,
192
- " expected array_set statement to have two operands" );
191
+ code.operands ().size () == 2 ,
192
+ " expected array_set statement to have two operands" );
193
193
194
194
// we need to add dereferencing for the first operand
195
195
exprt array_expr = dereference_exprt (code.op0 ());
@@ -235,8 +235,8 @@ void goto_symext::symex_other(
235
235
// the right-hand side is an equality over the arrays, if their types match;
236
236
// if the types don't match the result trivially is false
237
237
DATA_INVARIANT (
238
- code.operands ().size () == 3 ,
239
- " expected array_equal statement to have three operands" );
238
+ code.operands ().size () == 3 ,
239
+ " expected array_equal statement to have three operands" );
240
240
241
241
// we need to add dereferencing for the first two
242
242
dereference_exprt array1 (code.op0 ());
@@ -269,8 +269,8 @@ void goto_symext::symex_other(
269
269
else if (statement==ID_havoc_object)
270
270
{
271
271
DATA_INVARIANT (
272
- code.operands ().size () == 1 ,
273
- " expected havoc_object statement to have one operand" );
272
+ code.operands ().size () == 1 ,
273
+ " expected havoc_object statement to have one operand" );
274
274
275
275
// we need to add dereferencing for the first operand
276
276
dereference_exprt object (code.op0 (), empty_typet ());
0 commit comments