aboutsummaryrefslogtreecommitdiff
path: root/gdb/eval.c
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@sourceware.org>2012-09-21 09:24:41 +0000
committerSiddhesh Poyarekar <siddhesh@sourceware.org>2012-09-21 09:24:41 +0000
commit0953dec1c5fd4a0dabd66a113cd3ccad5b612f23 (patch)
treee87edd423de9aa9ec68de0264ef965eecadb60a4 /gdb/eval.c
parenta065d7af0e229f022f2517c3d151434278bfb22b (diff)
downloadgdb-0953dec1c5fd4a0dabd66a113cd3ccad5b612f23.zip
gdb-0953dec1c5fd4a0dabd66a113cd3ccad5b612f23.tar.gz
gdb-0953dec1c5fd4a0dabd66a113cd3ccad5b612f23.tar.bz2
* eval.c (evaluate_subexp_standard): Eliminate single-use
variable LOWER.
Diffstat (limited to 'gdb/eval.c')
-rw-r--r--gdb/eval.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/eval.c b/gdb/eval.c
index 9fe7e38..26e0cc8 100644
--- a/gdb/eval.c
+++ b/gdb/eval.c
@@ -810,7 +810,6 @@ evaluate_subexp_standard (struct type *expect_type,
struct type *type;
int nargs;
struct value **argvec;
- int lower;
int code;
int ix;
long mem_offset;
@@ -2370,8 +2369,8 @@ evaluate_subexp_standard (struct type *expect_type,
struct type *array_type = check_typedef (value_type (array));
LONGEST index = subscript_array[i - 1];
- lower = f77_get_lowerbound (array_type);
- array = value_subscripted_rvalue (array, index, lower);
+ array = value_subscripted_rvalue (array, index,
+ f77_get_lowerbound (array_type));
}
return array;