File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -210,9 +210,13 @@ void instrumentert::cfg_visitort::visit_cfg_function(
210
210
/* a:=b -o-> Rb -po-> Wa */
211
211
else if (instruction.is_assign ())
212
212
{
213
- visit_cfg_assign (value_sets, ns, i_it, no_dependencies
213
+ visit_cfg_assign (
214
+ value_sets,
215
+ i_it,
216
+ no_dependencies
214
217
#ifdef LOCAL_MAY
215
- , local_may
218
+ ,
219
+ local_may
216
220
#endif
217
221
); // NOLINT(whitespace/parens)
218
222
}
@@ -783,7 +787,6 @@ void instrumentert::cfg_visitort::visit_cfg_asm_fence(
783
787
784
788
void instrumentert::cfg_visitort::visit_cfg_assign (
785
789
value_setst &value_sets,
786
- namespacet &ns,
787
790
goto_programt::instructionst::iterator &i_it,
788
791
bool no_dependencies
789
792
#ifdef LOCAL_MAY
Original file line number Diff line number Diff line change @@ -125,11 +125,14 @@ class instrumentert
125
125
goto_programt::const_targett i_it);
126
126
void inline visit_cfg_duplicate (goto_programt::const_targett targ,
127
127
goto_programt::const_targett i_it);
128
- void visit_cfg_assign (value_setst &value_sets, namespacet &ns,
129
- goto_programt::instructionst::iterator &i_it, bool no_dependencies
130
- #ifdef LOCAL_MAY
131
- , local_may_aliast &local_may
132
- #endif
128
+ void visit_cfg_assign (
129
+ value_setst &value_sets,
130
+ goto_programt::instructionst::iterator &i_it,
131
+ bool no_dependencies
132
+ #ifdef LOCAL_MAY
133
+ ,
134
+ local_may_aliast &local_may
135
+ #endif
133
136
); // NOLINT(whitespace/parens)
134
137
void visit_cfg_fence (goto_programt::instructionst::iterator i_it);
135
138
void visit_cfg_skip (goto_programt::instructionst::iterator i_it);
You can’t perform that action at this time.
0 commit comments