aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2011-11-23 19:54:18 +0000
committerJoel Brobecker <brobecker@gnat.com>2011-11-23 19:54:18 +0000
commit1fbf5ada2fa5ffb4b5cb98247509a96d20032f67 (patch)
tree550f60fa066e64955ddfc2527ce2fc679a68abc8
parentd984108d931ea74b1435620edb15f087f0c257c2 (diff)
downloadbinutils-1fbf5ada2fa5ffb4b5cb98247509a96d20032f67.zip
binutils-1fbf5ada2fa5ffb4b5cb98247509a96d20032f67.tar.gz
binutils-1fbf5ada2fa5ffb4b5cb98247509a96d20032f67.tar.bz2
Minor reformatting in ada-lang.c:assign_aggregate
No code change. gdb/ChangeLog: From Andrey Smirnov <andrew.smirnov@gmail.com>: * ada-lang.c (assign_aggregate): Minor reformatting.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/ada-lang.c32
2 files changed, 20 insertions, 16 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index ea8fb66..0585e1e 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2011-11-23 Andrey Smirnov <andrew.smirnov@gmail.com>
+ * ada-lang.c (assign_aggregate): Minor reformatting.
+
+2011-11-23 Andrey Smirnov <andrew.smirnov@gmail.com>
+
* ada-lang.c (assign_aggregate): Remove declaration of local
variable `i' which is shadowing another variable with the same
name declared in the outer scope.
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index 48073fb..e396596 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -8706,24 +8706,24 @@ assign_aggregate (struct value *container,
{
switch (exp->elts[*pos].opcode)
{
- case OP_CHOICES:
- aggregate_assign_from_choices (container, lhs, exp, pos, indices,
+ case OP_CHOICES:
+ aggregate_assign_from_choices (container, lhs, exp, pos, indices,
+ &num_indices, max_indices,
+ low_index, high_index);
+ break;
+ case OP_POSITIONAL:
+ aggregate_assign_positional (container, lhs, exp, pos, indices,
&num_indices, max_indices,
low_index, high_index);
- break;
- case OP_POSITIONAL:
- aggregate_assign_positional (container, lhs, exp, pos, indices,
- &num_indices, max_indices,
- low_index, high_index);
- break;
- case OP_OTHERS:
- if (i != n-1)
- error (_("Misplaced 'others' clause"));
- aggregate_assign_others (container, lhs, exp, pos, indices,
- num_indices, low_index, high_index);
- break;
- default:
- error (_("Internal error: bad aggregate clause"));
+ break;
+ case OP_OTHERS:
+ if (i != n-1)
+ error (_("Misplaced 'others' clause"));
+ aggregate_assign_others (container, lhs, exp, pos, indices,
+ num_indices, low_index, high_index);
+ break;
+ default:
+ error (_("Internal error: bad aggregate clause"));
}
}