2016-02-26 20:58:14 +00:00
|
|
|
http://sourceware.org/ml/gdb-patches/2016-02/msg00841.html
|
|
|
|
Subject: [PATCH v2 2/6] fortran: combine subarray and string computation
|
|
|
|
|
2016-01-09 10:58:30 +00:00
|
|
|
From: Christoph Weinmann <christoph.t.weinmann@intel.com>
|
|
|
|
|
|
|
|
Strings only have one dimension, but the element computation is
|
|
|
|
identical to the subarray computation for ranges and indices.
|
|
|
|
|
|
|
|
2013-11-26 Christoph Weinmann <christoph.t.weinmann@intel.com>
|
|
|
|
|
|
|
|
* eval.c (evaluate_subexp_standard): Call
|
|
|
|
value_f90_subarray for print expressions on array and
|
|
|
|
string types.
|
|
|
|
|
|
|
|
|
|
|
|
Signed-off-by: Christoph Weinmann <christoph.t.weinmann@intel.com>
|
|
|
|
---
|
2016-02-26 20:58:14 +00:00
|
|
|
gdb/eval.c | 10 +---------
|
|
|
|
1 file changed, 1 insertion(+), 9 deletions(-)
|
2016-01-09 10:58:30 +00:00
|
|
|
|
|
|
|
diff --git a/gdb/eval.c b/gdb/eval.c
|
2016-02-26 20:58:14 +00:00
|
|
|
index c9f325f..164d7ab 100644
|
2016-01-09 10:58:30 +00:00
|
|
|
--- a/gdb/eval.c
|
|
|
|
+++ b/gdb/eval.c
|
|
|
|
@@ -2034,16 +2034,8 @@ evaluate_subexp_standard (struct type *expect_type,
|
|
|
|
switch (code)
|
|
|
|
{
|
|
|
|
case TYPE_CODE_ARRAY:
|
|
|
|
- return value_f90_subarray (arg1, exp, pos, nargs, noside);
|
|
|
|
-
|
|
|
|
case TYPE_CODE_STRING:
|
|
|
|
- if (exp->elts[*pos].opcode == OP_F90_RANGE)
|
|
|
|
- return value_f90_subarray (arg1, exp, pos, 1, noside);
|
|
|
|
- else
|
|
|
|
- {
|
|
|
|
- arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
|
|
|
|
- return value_subscript (arg1, value_as_long (arg2));
|
|
|
|
- }
|
|
|
|
+ return value_f90_subarray (arg1, exp, pos, nargs, noside);
|
|
|
|
|
|
|
|
case TYPE_CODE_PTR:
|
|
|
|
case TYPE_CODE_FUNC:
|
|
|
|
--
|
2016-02-26 20:58:14 +00:00
|
|
|
2.5.0
|
|
|
|
|