From f2e5f4cedf3020d6af0c5f33ce890a5ca790e1ad Mon Sep 17 00:00:00 2001 From: Aleksandar Ristovski Date: Fri, 1 Feb 2013 20:06:35 +0000 Subject: 2013-02-01 Aleksandar Ristovski * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'. Reference: http://sourceware.org/ml/gdb-patches/2013-01/msg00732.html --- gdb/ada-lang.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'gdb/ada-lang.c') diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index ef808c4..c202173 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -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.")); -- cgit v1.1