@@ -88,12 +88,12 @@ void boolbvt::convert_with(
8888 else if (type.id ()==ID_bv ||
8989 type.id ()==ID_unsignedbv ||
9090 type.id ()==ID_signedbv)
91- return convert_with_bv (type, op1, op2, prev_bv, next_bv);
91+ return convert_with_bv (op1, op2, prev_bv, next_bv);
9292 else if (type.id ()==ID_struct)
9393 return
9494 convert_with_struct (to_struct_type (type), op1, op2, prev_bv, next_bv);
9595 else if (type.id ()==ID_union)
96- return convert_with_union (to_union_type (type), op1, op2, prev_bv, next_bv);
96+ return convert_with_union (to_union_type (type), op2, prev_bv, next_bv);
9797 else if (type.id ()==ID_symbol)
9898 return convert_with (ns.follow (type), op1, op2, prev_bv, next_bv);
9999
@@ -172,7 +172,6 @@ void boolbvt::convert_with_array(
172172}
173173
174174void boolbvt::convert_with_bv (
175- const typet &type,
176175 const exprt &op1,
177176 const exprt &op2,
178177 const bvt &prev_bv,
@@ -261,7 +260,6 @@ void boolbvt::convert_with_struct(
261260
262261void boolbvt::convert_with_union (
263262 const union_typet &type,
264- const exprt &op1,
265263 const exprt &op2,
266264 const bvt &prev_bv,
267265 bvt &next_bv)
0 commit comments