Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Chandru <chandru@in.ibm.com>
To: gdb-patches@sourceware.org
Subject: gdb can't print array element for fortran
Date: Fri, 12 Mar 2010 13:06:00 -0000	[thread overview]
Message-ID: <201003121836.24712.chandru@in.ibm.com> (raw)

This mail pertains to the discussion had on gdb mailing list sometime
back here  http://sourceware.org/ml/gdb-patches/2009-01/msg00251.html.
After a small discussion with Jan I made the following changes and 
these didn't seem to work. Any inputs or thoughts would be helpful. 

thanks
Chandru

 
--- src/gdb/gdbtypes.c.orig	2010-02-25 00:00:19.000000000 +0530
+++ src/gdb/gdbtypes.c	2010-02-25 00:03:16.000000000 +0530
@@ -727,6 +727,14 @@ create_range_type (struct type *result_t
   if (low_bound >= 0)
     TYPE_UNSIGNED (result_type) = 1;
 
+  if (high_bound < low_bound)
+    {
+      if (high_bound == -1)
+        TYPE_HIGH_BOUND_UNDEFINED(result_type) = 1;
+      else
+        TYPE_HIGH_BOUND_UNDEFINED(result_type) = 0;
+    }
+
   return result_type;
 }
 
--- src/gdb/valarith.c.orig	2010-02-25 00:00:26.000000000 +0530
+++ src/gdb/valarith.c	2010-02-25 00:04:37.000000000 +0530
@@ -198,7 +198,7 @@ value_subscripted_rvalue (struct value *
   unsigned int elt_offs = elt_size * longest_to_int (index - lowerbound);
   struct value *v;
 
-  if (index < lowerbound || elt_offs >= TYPE_LENGTH (array_type))
+  if (index < lowerbound || ((elt_offs >= TYPE_LENGTH (array_type)) && !TYPE_HIGH_BOUND_UNDEFINED(array_type)))
     error (_("no such vector element"));
 
   v = allocate_value (elt_type);


             reply	other threads:[~2010-03-12 13:06 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-12 13:06 Chandru [this message]
2010-03-15 17:13 ` Joel Brobecker
2010-03-15 20:52   ` Tom Tromey
2010-03-15 23:46     ` Jan Kratochvil
2010-03-16 15:16       ` Joel Brobecker
2010-03-16 21:04         ` Jan Kratochvil
2010-03-18 11:24 Nick Roberts

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201003121836.24712.chandru@in.ibm.com \
    --to=chandru@in.ibm.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox