2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>

* ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.

Reference: http://sourceware.org/ml/gdb-patches/2013-01/msg00732.html
This commit is contained in:
Aleksandar Ristovski 2013-02-01 20:06:35 +00:00
parent c1f7d745c8
commit f2e5f4cedf
2 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
* ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
2013-02-01 Pedro Alves <palves@redhat.com>
* dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.

View File

@ -9029,7 +9029,6 @@ assign_aggregate (struct value *container,
int num_specs;
LONGEST *indices;
int max_indices, num_indices;
int is_array_aggregate;
int i;
*pos += 3;
@ -9054,13 +9053,11 @@ assign_aggregate (struct value *container,
lhs_type = value_type (lhs);
low_index = TYPE_ARRAY_LOWER_BOUND_VALUE (lhs_type);
high_index = TYPE_ARRAY_UPPER_BOUND_VALUE (lhs_type);
is_array_aggregate = 1;
}
else if (TYPE_CODE (lhs_type) == TYPE_CODE_STRUCT)
{
low_index = 0;
high_index = num_visible_fields (lhs_type) - 1;
is_array_aggregate = 0;
}
else
error (_("Left-hand side must be array or record."));