File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -603,8 +603,6 @@ void symex_target_equationt::convert_assertions(
603
603
void symex_target_equationt::convert_function_calls (
604
604
decision_proceduret &dec_proc)
605
605
{
606
- std::size_t argument_count=0 ;
607
-
608
606
for (auto &step : SSA_steps)
609
607
if (!step.ignore )
610
608
{
@@ -633,8 +631,6 @@ void symex_target_equationt::convert_function_calls(
633
631
void symex_target_equationt::convert_io (
634
632
decision_proceduret &dec_proc)
635
633
{
636
- std::size_t io_count=0 ;
637
-
638
634
for (auto &step : SSA_steps)
639
635
if (!step.ignore )
640
636
{
Original file line number Diff line number Diff line change @@ -405,6 +405,12 @@ class symex_target_equationt:public symex_targett
405
405
// for enforcing sharing in the expressions stored
406
406
merge_irept merge_irep;
407
407
void merge_ireps (SSA_stept &SSA_step);
408
+
409
+ // for unique I/O identifiers
410
+ std::size_t io_count = 0 ;
411
+
412
+ // for unique function call argument identifiers
413
+ std::size_t argument_count = 0 ;
408
414
};
409
415
410
416
inline bool operator <(
You can’t perform that action at this time.
0 commit comments