aboutsummaryrefslogtreecommitdiff
path: root/gdb/eval.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2023-08-28 12:52:54 -0600
committerTom Tromey <tromey@adacore.com>2023-08-29 13:36:55 -0600
commit8b2ac9b21649a9c7f9edecfd817e9d10f20158c0 (patch)
tree5e3b5792840b194974bedb75ef644bcd715315f7 /gdb/eval.c
parent21bdf43aa282d25ceb462099caee5693192a8fda (diff)
downloadgdb-8b2ac9b21649a9c7f9edecfd817e9d10f20158c0.zip
gdb-8b2ac9b21649a9c7f9edecfd817e9d10f20158c0.tar.gz
gdb-8b2ac9b21649a9c7f9edecfd817e9d10f20158c0.tar.bz2
Remove another redundant variable from array_operation::evaluate
This removes yet another redundant variable from array_operation::evaluate -- only one index is needed. Reviewed-by: John Baldwin <jhb@FreeBSD.org> Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/eval.c')
-rw-r--r--gdb/eval.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/gdb/eval.c b/gdb/eval.c
index 710506e..8dd1b53 100644
--- a/gdb/eval.c
+++ b/gdb/eval.c
@@ -2419,7 +2419,7 @@ array_operation::evaluate (struct type *expect_type,
struct type *element_type = type->target_type ();
struct value *array = value::allocate (expect_type);
int element_size = check_typedef (element_type)->length ();
- LONGEST low_bound, high_bound, index;
+ LONGEST low_bound, high_bound;
if (!get_discrete_bounds (range_type, &low_bound, &high_bound))
{
@@ -2428,21 +2428,17 @@ array_operation::evaluate (struct type *expect_type,
}
if (low_bound + nargs - 1 > high_bound)
error (_("Too many array elements"));
- index = low_bound;
memset (array->contents_raw ().data (), 0, expect_type->length ());
- for (int tem = 0; tem < nargs; ++tem)
+ for (int idx = 0; idx < nargs; ++idx)
{
struct value *element;
- element = in_args[index - low_bound]->evaluate (element_type,
- exp, noside);
+ element = in_args[idx]->evaluate (element_type, exp, noside);
if (element->type () != element_type)
element = value_cast (element_type, element);
- memcpy (array->contents_raw ().data ()
- + (index - low_bound) * element_size,
+ memcpy (array->contents_raw ().data () + idx * element_size,
element->contents ().data (),
element_size);
- index++;
}
return array;
}