File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -535,7 +535,7 @@ void c_typecheck_baset::typecheck_switch_case(code_switch_caset &code)
535
535
exprt &case_expr=code.case_op ();
536
536
typecheck_expr (case_expr);
537
537
implicit_typecast (case_expr, switch_op_type);
538
- // make_constant(case_expr);
538
+ make_constant (case_expr);
539
539
}
540
540
}
541
541
@@ -562,8 +562,8 @@ void c_typecheck_baset::typecheck_gcc_switch_case_range(codet &code)
562
562
typecheck_expr (code.op1 ());
563
563
implicit_typecast (code.op0 (), switch_op_type);
564
564
implicit_typecast (code.op1 (), switch_op_type);
565
- // make_constant(code.op0());
566
- // make_constant(code.op1());
565
+ make_constant (code.op0 ());
566
+ make_constant (code.op1 ());
567
567
}
568
568
569
569
void c_typecheck_baset::typecheck_gcc_local_label (codet &code)
You can’t perform that action at this time.
0 commit comments