File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -955,6 +955,7 @@ bool cbmc_parse_optionst::process_goto_program(
955
955
956
956
if (options.get_bool_option (" reachability-slice" ))
957
957
{
958
+ log.warning () << " WARNING: Unsound option --reachability-slice" << messaget::eom;
958
959
log.status () << " Performing a reachability slice" << messaget::eom;
959
960
if (options.is_set (" property" ))
960
961
reachability_slicer (goto_model, options.get_list_option (" property" ));
@@ -965,6 +966,7 @@ bool cbmc_parse_optionst::process_goto_program(
965
966
// full slice?
966
967
if (options.get_bool_option (" full-slice" ))
967
968
{
969
+ log.warning () << " WARNING: Unsound option --full-slice" << messaget::eom;
968
970
log.status () << " Performing a full slice" << messaget::eom;
969
971
if (options.is_set (" property" ))
970
972
property_slicer (goto_model, options.get_list_option (" property" ));
Original file line number Diff line number Diff line change @@ -1600,6 +1600,7 @@ void goto_instrument_parse_optionst::instrument_goto_program()
1600
1600
{
1601
1601
do_indirect_call_and_rtti_removal ();
1602
1602
1603
+ log.warning () << " WARNING: Unsound option --reachability-slice" << messaget::eom;
1603
1604
log.status () << " Performing a reachability slice" << messaget::eom;
1604
1605
1605
1606
// reachability_slicer requires that the model has unique location numbers:
@@ -1627,7 +1628,9 @@ void goto_instrument_parse_optionst::instrument_goto_program()
1627
1628
do_indirect_call_and_rtti_removal ();
1628
1629
do_remove_returns ();
1629
1630
1631
+ log.warning () << " WARNING: Unsound option --full-slice" << messaget::eom;
1630
1632
log.status () << " Performing a full slice" << messaget::eom;
1633
+
1631
1634
if (cmdline.isset (" property" ))
1632
1635
property_slicer (goto_model, cmdline.get_values (" property" ));
1633
1636
else
@@ -1689,7 +1692,9 @@ void goto_instrument_parse_optionst::instrument_goto_program()
1689
1692
1690
1693
goto_model.goto_functions .update ();
1691
1694
1695
+ log.warning () << " WARNING: Unsound option --reachability-slice" << messaget::eom;
1692
1696
log.status () << " Performing a reachability slice" << messaget::eom;
1697
+
1693
1698
if (cmdline.isset (" property" ))
1694
1699
reachability_slicer (goto_model, cmdline.get_values (" property" ));
1695
1700
else
You can’t perform that action at this time.
0 commit comments