diff options
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index aa0c715..d383720 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -1736,9 +1736,9 @@ parse_type (int fd, union aux_ext *ax, unsigned int aux_index, int *bs, tp->set_num_fields (0); tp->set_bounds (((struct range_bounds *) TYPE_ZALLOC (tp, sizeof (struct range_bounds)))); - TYPE_LOW_BOUND (tp) = AUX_GET_DNLOW (bigend, ax); + tp->bounds ()->low.set_const_val (AUX_GET_DNLOW (bigend, ax)); ax++; - TYPE_HIGH_BOUND (tp) = AUX_GET_DNHIGH (bigend, ax); + tp->bounds ()->high.set_const_val (AUX_GET_DNHIGH (bigend, ax)); ax++; } |