File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ void goto_analyzer_parse_optionst::get_command_line_options(optionst &options)
225
225
options.set_option (" intervals" , true );
226
226
options.set_option (" domain set" , true );
227
227
}
228
- else if (cmdline.isset (" ( show-non-null) " ))
228
+ else if (cmdline.isset (" show-non-null" ))
229
229
{
230
230
// For backwards compatibility
231
231
options.set_option (" show" , true );
@@ -235,8 +235,10 @@ void goto_analyzer_parse_optionst::get_command_line_options(optionst &options)
235
235
}
236
236
else if (cmdline.isset (" intervals" ) || cmdline.isset (" non-null" ))
237
237
{
238
- // For backwards compatibility either of these on their own means show
239
- options.set_option (" show" , true );
238
+ // Partial backwards compatability, just giving these domains without
239
+ // a task will work. However it will use the general default of verify
240
+ // rather than their historical default of show.
241
+ options.set_option (" verify" , true );
240
242
options.set_option (" general-analysis" , true );
241
243
}
242
244
You can’t perform that action at this time.
0 commit comments