File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ IREP_ID_ONE(smv_abs)
2121IREP_ID_ONE (smv_bitimplies )
2222IREP_ID_ONE (smv_bit_selection )
2323IREP_ID_ONE (smv_bool )
24+ IREP_ID_ONE (smv_cases )
2425IREP_ID_ONE (smv_count )
2526IREP_ID_ONE (smv_enumeration )
2627IREP_ID_ONE (smv_extend )
Original file line number Diff line number Diff line change @@ -949,7 +949,7 @@ complex_identifier:
949949 ;
950950
951951cases :
952- { init ($$, " smv_cases " ); }
952+ { init ($$, ID_smv_cases ); }
953953 | cases case
954954 { $$=$1 ; mto ($$, $2 ); }
955955 ;
Original file line number Diff line number Diff line change @@ -1958,7 +1958,7 @@ void smv_typecheckt::convert(exprt &expr)
19581958
19591959 expr.id (ID_constraint_select_one);
19601960 }
1961- else if (expr.id ()== " smv_cases " ) // cases
1961+ else if (expr.id () == ID_smv_cases ) // cases
19621962 {
19631963 if (expr.operands ().size ()<1 )
19641964 {
You can’t perform that action at this time.
0 commit comments