@@ -175,14 +175,14 @@ static smt_termt make_bitvector_resize_cast(
175
175
const bitvector_typet &from_type,
176
176
const bitvector_typet &to_type)
177
177
{
178
- if (const auto to_fixedbv_type = type_try_dynamic_cast<fixedbv_typet>(to_type))
178
+ if (type_try_dynamic_cast<fixedbv_typet>(to_type))
179
179
{
180
180
UNIMPLEMENTED_FEATURE (
181
181
" Generation of SMT formula for type cast to fixed-point bitvector "
182
182
" type: " +
183
183
to_type.pretty ());
184
184
}
185
- if (const auto to_floatbv_type = type_try_dynamic_cast<floatbv_typet>(to_type))
185
+ if (type_try_dynamic_cast<floatbv_typet>(to_type))
186
186
{
187
187
UNIMPLEMENTED_FEATURE (
188
188
" Generation of SMT formula for type cast to floating-point bitvector "
@@ -258,7 +258,7 @@ static smt_termt convert_expr_to_smt(
258
258
const auto &from_term = converted.at (cast.op ());
259
259
const typet &from_type = cast.op ().type ();
260
260
const typet &to_type = cast.type ();
261
- if (const auto bool_type = type_try_dynamic_cast<bool_typet>(to_type))
261
+ if (type_try_dynamic_cast<bool_typet>(to_type))
262
262
return make_not_zero (from_term, cast.op ().type ());
263
263
if (const auto c_bool_type = type_try_dynamic_cast<c_bool_typet>(to_type))
264
264
return convert_c_bool_cast (from_term, from_type, *c_bool_type);
@@ -893,9 +893,7 @@ static smt_termt convert_expr_to_smt(
893
893
" Pointer should be wider than object_bits in order to allow for offset "
894
894
" encoding." );
895
895
const size_t offset_bits = type->get_width () - object_bits;
896
- if (
897
- const auto symbol =
898
- expr_try_dynamic_cast<symbol_exprt>(address_of.object ()))
896
+ if (expr_try_dynamic_cast<symbol_exprt>(address_of.object ()))
899
897
{
900
898
const smt_bit_vector_constant_termt offset{0 , offset_bits};
901
899
return smt_bit_vector_theoryt::concat (object_bit_vector, offset);
0 commit comments