File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -1649,12 +1649,16 @@ void goto_checkt::goto_check(
16491649 if ((is_user_provided && !enable_assertions &&
16501650 i.source_location .get_property_class ()!=" error label" ) ||
16511651 (!is_user_provided && !enable_built_in_assertions))
1652- i.type =SKIP;
1652+ {
1653+ i.make_skip ();
1654+ }
16531655 }
16541656 else if (i.is_assume ())
16551657 {
16561658 if (!enable_assumptions)
1657- i.type =SKIP;
1659+ {
1660+ i.make_skip ();
1661+ }
16581662 }
16591663 else if (i.is_dead ())
16601664 {
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ void set_properties(
3232 property_set.find (property_id);
3333
3434 if (c_it==property_set.end ())
35- it->type =SKIP ;
35+ it->make_skip () ;
3636 else
3737 property_set.erase (c_it);
3838 }
You can’t perform that action at this time.
0 commit comments