File tree 2 files changed +3
-5
lines changed
src/goto-instrument/contracts/dynamic-frames
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ Date: March 2023
13
13
#include " dfcc_loop_nesting_graph.h"
14
14
15
15
#include < util/invariant.h>
16
- #include < util/message.h>
17
16
18
17
dfcc_loop_nesting_graph_nodet::dfcc_loop_nesting_graph_nodet (
19
18
const goto_programt::targett &head,
@@ -24,8 +23,7 @@ dfcc_loop_nesting_graph_nodet::dfcc_loop_nesting_graph_nodet(
24
23
}
25
24
26
25
// / \pre Loop normal form properties must hold.
27
- dfcc_loop_nesting_grapht
28
- build_loop_nesting_graph (goto_programt &goto_program, messaget &log)
26
+ dfcc_loop_nesting_grapht build_loop_nesting_graph (goto_programt &goto_program)
29
27
{
30
28
natural_loops_mutablet natural_loops (goto_program);
31
29
dfcc_loop_nesting_grapht loop_nesting_graph;
Original file line number Diff line number Diff line change @@ -47,6 +47,6 @@ typedef grapht<dfcc_loop_nesting_graph_nodet> dfcc_loop_nesting_grapht;
47
47
// / loops in the given \p goto_program.
48
48
// / A loop is considered nested in an outer loop if its head and its latch are
49
49
// / both found in the instructions of the outer loop.
50
- dfcc_loop_nesting_grapht
51
- build_loop_nesting_graph (goto_programt &goto_program, messaget &log);
50
+ dfcc_loop_nesting_grapht build_loop_nesting_graph (goto_programt &goto_program);
51
+
52
52
#endif
You can’t perform that action at this time.
0 commit comments