Skip to content

Commit a245087

Browse files
authored
Merge pull request diffblue#21 from diffblue/smowton/feature/disable_start
Disable _start function
2 parents 676dcd5 + 47456c5 commit a245087

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/driver/sec_driver_parse_options.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,10 @@ int sec_driver_parse_optionst::doit()
198198

199199
goto_model.set_message_handler(get_message_handler());
200200

201+
// Prevent generation of _start, which isn't necessary for our analysis
202+
// and can be costly:
203+
goto_model.generate_start_function = false;
204+
201205
if(goto_model(cmdline))
202206
return 6;
203207

0 commit comments

Comments
 (0)