diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-07-12 22:58:51 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2020-07-12 22:58:52 -0400 |
commit | 5537ddd024adc7d1af6f9572983f77e9dd047fce (patch) | |
tree | 140eaabcf9d30e85f99be4c6b7f2d918ca310514 /gdb/eval.c | |
parent | 8c2e4e0689ea244d0ed979171a3d09c9176b8175 (diff) | |
download | gdb-5537ddd024adc7d1af6f9572983f77e9dd047fce.zip gdb-5537ddd024adc7d1af6f9572983f77e9dd047fce.tar.gz gdb-5537ddd024adc7d1af6f9572983f77e9dd047fce.tar.bz2 |
gdb: remove TYPE_HIGH_BOUND and TYPE_LOW_BOUND
Remove the macros, use the getters of `struct dynamic_prop` instead.
gdb/ChangeLog:
* gdbtypes.h (TYPE_LOW_BOUND, TYPE_HIGH_BOUND): Remove. Update
all callers to use type::range_bounds followed by
dynamic_prop::{low,high}.
Change-Id: I31beeed65d94d81ac4f999244a8b859e2ee961d1
Diffstat (limited to 'gdb/eval.c')
-rw-r--r-- | gdb/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -384,12 +384,12 @@ value_f90_subarray (struct value *array, *pos += 3; if (range_type == LOW_BOUND_DEFAULT || range_type == BOTH_BOUND_DEFAULT) - low_bound = TYPE_LOW_BOUND (range); + low_bound = range->bounds ()->low.const_val (); else low_bound = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside)); if (range_type == HIGH_BOUND_DEFAULT || range_type == BOTH_BOUND_DEFAULT) - high_bound = TYPE_HIGH_BOUND (range); + high_bound = range->bounds ()->high.const_val (); else high_bound = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside)); |