@@ -133,7 +133,7 @@ void dfcc_instrumentt::get_instrumented_functions(
133
133
are allowed for deallocation by the write set.
134
134
135
135
There is also a number of CPROVER global static symbols that are used to
136
- suport memory safety property instrumentation, and assignments to these
136
+ support memory safety property instrumentation, and assignments to these
137
137
statics should always be allowed (i.e not instrumented):
138
138
- __CPROVER_alloca_object,
139
139
- __CPROVER_dead_object,
@@ -831,7 +831,7 @@ void dfcc_instrumentt::instrument_assign(
831
831
if (rhs.id () == ID_side_effect && rhs.get (ID_statement) == ID_allocate)
832
832
{
833
833
// ```
834
- // CALL lhs := side_effect(statemet = ID_allocate, args = {size, clear});
834
+ // CALL lhs := side_effect(statement = ID_allocate, args = {size, clear});
835
835
// ----
836
836
// IF !write_set GOTO skip_target;
837
837
// CALL add_allocated(write_set, lhs);
@@ -1078,7 +1078,7 @@ void dfcc_instrumentt::instrument_other(
1078
1078
// DEAD check_array_set;
1079
1079
// skip_target: SKIP;
1080
1080
// ----
1081
- // OTHER {statemet = array_set, args = {dest, value}};
1081
+ // OTHER {statement = array_set, args = {dest, value}};
1082
1082
// ```
1083
1083
const auto &mode = utils.get_function_symbol (function_id).mode ;
1084
1084
goto_programt payload;
@@ -1139,7 +1139,7 @@ void dfcc_instrumentt::instrument_other(
1139
1139
// DEAD check_array_replace;
1140
1140
// skip_target: SKIP;
1141
1141
// ----
1142
- // OTHER {statemet = array_replace, args = {dest, src}};
1142
+ // OTHER {statement = array_replace, args = {dest, src}};
1143
1143
// ```
1144
1144
const auto &mode = utils.get_function_symbol (function_id).mode ;
1145
1145
goto_programt payload;
0 commit comments