/* Support for printing Fortran values for GDB, the GNU debugger.
- Copyright 1993, 1994 Free Software Foundation, Inc.
+ Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
Contributed by Motorola. Adapted from the C definitions by Farooq Butt
#include "gdbcore.h"
#include "command.h"
-extern struct obstack dont_print_obstack;
-
extern unsigned int print_max; /* No of array elements to print */
extern int calc_f77_array_dims PARAMS ((struct type *));
FILE *stream;
{
struct type *tmp_type;
- int eltlen;
+ int eltlen;
int ndimen = 1;
int upper, lower, retcode;
F77_DIM_SIZE (ndimen) = upper - lower + 1;
- if (ndimen == 1)
- F77_DIM_OFFSET (ndimen) = 1;
- else
- F77_DIM_OFFSET (ndimen) =
- F77_DIM_OFFSET (ndimen - 1) * F77_DIM_SIZE(ndimen - 1);
-
tmp_type = TYPE_TARGET_TYPE (tmp_type);
ndimen++;
}
- eltlen = TYPE_LENGTH (tmp_type);
-
/* Now we multiply eltlen by all the offsets, so that later we
can print out array elements correctly. Up till now we
know an offset to apply to get the item but we also
have to know how much to add to get to the next item */
- tmp_type = type;
- ndimen = 1;
-
- while ((TYPE_CODE (tmp_type) == TYPE_CODE_ARRAY))
+ ndimen--;
+ eltlen = TYPE_LENGTH (tmp_type);
+ F77_DIM_OFFSET (ndimen) = eltlen;
+ while (--ndimen > 0)
{
- F77_DIM_OFFSET (ndimen) *= eltlen;
- ndimen++;
- tmp_type = TYPE_TARGET_TYPE (tmp_type);
+ eltlen *= F77_DIM_SIZE (ndimen + 1);
+ F77_DIM_OFFSET (ndimen) = eltlen;
}
}
enum val_prettyprint pretty;
{
register unsigned int i = 0; /* Number of characters printed */
- unsigned len;
struct type *elttype;
LONGEST val;
- char *localstr;
char *straddr;
CORE_ADDR addr;