summaryrefslogtreecommitdiff
path: root/gdb/p-valprint.c
diff options
context:
space:
mode:
authorPierre Muller <muller@ics.u-strasbg.fr>2010-05-17 15:29:01 +0000
committerPierre Muller <muller@ics.u-strasbg.fr>2010-05-17 15:29:01 +0000
commite945d4e6b56b6f83d414771e31495e61db962d25 (patch)
treee18cc7abc84d9fc8e38345628c979cca0a188842 /gdb/p-valprint.c
parent345c80e947084d2a7de8b5a292bd1a98d6367fa7 (diff)
downloadgdb-e945d4e6b56b6f83d414771e31495e61db962d25.tar.gz
* p-valprint.c (pascal_val_print): Handle set type if range limits
are undefined but size is known.
Diffstat (limited to 'gdb/p-valprint.c')
-rw-r--r--gdb/p-valprint.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/p-valprint.c b/gdb/p-valprint.c
index 78cba98d386..5f495b5d2bc 100644
--- a/gdb/p-valprint.c
+++ b/gdb/p-valprint.c
@@ -480,6 +480,14 @@ pascal_val_print (struct type *type, const gdb_byte *valaddr,
fputs_filtered ("[", stream);
i = get_discrete_bounds (range, &low_bound, &high_bound);
+ if (low_bound == 0 && high_bound == -1 && TYPE_LENGTH (type) > 0)
+ {
+ /* If we know the size of the set type, we can figure out the
+ maximum value. */
+ i = 0;
+ high_bound = TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1;
+ TYPE_HIGH_BOUND (range) = high_bound;
+ }
maybe_bad_bstring:
if (i < 0)
{