File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,7 @@ static const struct pass_data afl_cmplog_pass_data = {
44
44
.properties_provided = 0 ,
45
45
.properties_destroyed = 0 ,
46
46
.todo_flags_start = 0 ,
47
- .todo_flags_finish = (TODO_update_ssa | TODO_cleanup_cfg | TODO_verify_il |
48
- TODO_rebuild_cgraph_edges),
47
+ .todo_flags_finish = (TODO_update_ssa | TODO_cleanup_cfg | TODO_rebuild_cgraph_edges),
49
48
50
49
};
51
50
Original file line number Diff line number Diff line change @@ -44,8 +44,7 @@ static const struct pass_data afl_cmptrs_pass_data = {
44
44
.properties_provided = 0 ,
45
45
.properties_destroyed = 0 ,
46
46
.todo_flags_start = 0 ,
47
- .todo_flags_finish = (TODO_update_ssa | TODO_cleanup_cfg | TODO_verify_il |
48
- TODO_rebuild_cgraph_edges),
47
+ .todo_flags_finish = (TODO_update_ssa | TODO_cleanup_cfg | TODO_rebuild_cgraph_edges),
49
48
50
49
};
51
50
Original file line number Diff line number Diff line change 65
65
The new pass is to be a GIMPLE_PASS. Given the sort of
66
66
instrumentation it's supposed to do, its todo_flags_finish will
67
67
certainly need TODO_update_ssa, and TODO_cleanup_cfg.
68
- TODO_verify_il is probably desirable, at least during debugging.
69
68
TODO_rebuild_cgraph_edges is required only in the out-of-line
70
69
instrumentation mode.
71
70
@@ -148,7 +147,7 @@ static constexpr struct pass_data afl_pass_data = {
148
147
.properties_provided = 0 ,
149
148
.properties_destroyed = 0 ,
150
149
.todo_flags_start = 0 ,
151
- .todo_flags_finish = (TODO_update_ssa | TODO_cleanup_cfg | TODO_verify_il ),
150
+ .todo_flags_finish = (TODO_update_ssa | TODO_cleanup_cfg),
152
151
153
152
};
154
153
You can’t perform that action at this time.
0 commit comments