@@ -88,12 +88,12 @@ void boolbvt::convert_with(
88
88
else if (type.id ()==ID_bv ||
89
89
type.id ()==ID_unsignedbv ||
90
90
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);
92
92
else if (type.id ()==ID_struct)
93
93
return
94
94
convert_with_struct (to_struct_type (type), op1, op2, prev_bv, next_bv);
95
95
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);
97
97
else if (type.id ()==ID_symbol)
98
98
return convert_with (ns.follow (type), op1, op2, prev_bv, next_bv);
99
99
@@ -172,7 +172,6 @@ void boolbvt::convert_with_array(
172
172
}
173
173
174
174
void boolbvt::convert_with_bv (
175
- const typet &type,
176
175
const exprt &op1,
177
176
const exprt &op2,
178
177
const bvt &prev_bv,
@@ -261,7 +260,6 @@ void boolbvt::convert_with_struct(
261
260
262
261
void boolbvt::convert_with_union (
263
262
const union_typet &type,
264
- const exprt &op1,
265
263
const exprt &op2,
266
264
const bvt &prev_bv,
267
265
bvt &next_bv)
0 commit comments