|
15 | 15 |
|
16 | 16 | #include <json/json_parser.h>
|
17 | 17 |
|
18 |
| -#include <goto-programs/convert_nondet.h> |
| 18 | +#include <goto-programs/adjust_float_expressions.h> |
19 | 19 | #include <goto-programs/set_properties.h>
|
20 | 20 | #include <goto-programs/dead_code_elimination.h>
|
21 | 21 | #include <goto-programs/remove_virtual_functions.h>
|
|
26 | 26 | #include <goto-programs/read_goto_binary.h>
|
27 | 27 | #include <goto-programs/goto_inline.h>
|
28 | 28 |
|
29 |
| -#include <goto-symex/adjust_float_expressions.h> |
30 |
| - |
31 | 29 | #include <analyses/call_graph.h>
|
32 | 30 | #include <analyses/call_graph_helpers.h>
|
33 | 31 | #include <analyses/goto_check.h>
|
34 | 32 | #include <analyses/local_may_alias.h>
|
35 | 33 |
|
| 34 | +#include <java_bytecode/convert_java_nondet.h> |
36 | 35 | #include <java_bytecode/java_utils.h>
|
37 | 36 | #include <java_bytecode/remove_exceptions.h>
|
38 | 37 | #include <java_bytecode/remove_instanceof.h>
|
@@ -503,6 +502,20 @@ bool sec_driver_parse_optionst::process_goto_functions(
|
503 | 502 | return false;
|
504 | 503 | }
|
505 | 504 |
|
| 505 | +bool sec_driver_parse_optionst::can_generate_function_body(const irep_idt &name) |
| 506 | +{ |
| 507 | + return false; |
| 508 | +} |
| 509 | + |
| 510 | +bool sec_driver_parse_optionst::generate_function_body( |
| 511 | + const irep_idt &function_name, |
| 512 | + symbol_table_baset &symbol_table, |
| 513 | + goto_functiont &function, |
| 514 | + bool body_available) |
| 515 | +{ |
| 516 | + return false; |
| 517 | +} |
| 518 | + |
506 | 519 | /// display command line help
|
507 | 520 | void sec_driver_parse_optionst::help()
|
508 | 521 | {
|
|
0 commit comments