* ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
Reference: http://sourceware.org/ml/gdb-patches/2013-01/msg00732.html
+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.
int num_specs;
LONGEST *indices;
int max_indices, num_indices;
- int is_array_aggregate;
int i;
*pos += 3;
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."));