Remove two unnecessary casts

I noticed a spot in ada-lang.c where the return value of
value_as_address was cast to CORE_ADDR -- a no-op cast.  I searched
and found another.  This patch fixes both.
This commit is contained in:
Tom Tromey
2024-02-26 13:50:54 -07:00
parent 3d2d21728b
commit 4c3b59d5ba
2 changed files with 2 additions and 2 deletions

View File

@@ -1685,7 +1685,7 @@ eval_op_ind (struct type *expect_type, struct expression *exp,
BUILTIN_TYPE_LONGEST would seem to be a mistake. */
if (type->code () == TYPE_CODE_INT)
return value_at_lazy (builtin_type (exp->gdbarch)->builtin_int,
(CORE_ADDR) value_as_address (arg1));
value_as_address (arg1));
return value_ind (arg1);
}