We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ecb15e commit 27227ccCopy full SHA for 27227cc
src/goto-instrument/full_slicer.cpp
@@ -337,6 +337,10 @@ static bool implicit(goto_programt::const_targett target)
337
{
338
// some variables are used during symbolic execution only
339
340
+ const irep_idt &statement=target->code.get_statement();
341
+ if(statement==ID_array_copy)
342
+ return true;
343
+
344
if(!target->is_assign())
345
return false;
346
src/pointer-analysis/value_set_fi.cpp
@@ -1729,6 +1729,9 @@ void value_set_fit::apply_code(
1729
else if(statement==ID_fence)
1730
1731
}
1732
+ else if(statement==ID_array_copy)
1733
+ {
1734
+ }
1735
else if(statement==ID_input || statement==ID_output)
1736
1737
// doesn't do anything
0 commit comments