diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-09-26 00:09:25 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-10-22 09:24:42 +0100 |
commit | f2d8e4c59770975415585af20b3d4249ff57b36e (patch) | |
tree | 35ff51835d87fe51e123931e7efe2120eac85ad9 /gdb/expression.h | |
parent | 2f1b18db863d630b94f9454067597e0df648bf37 (diff) | |
download | binutils-f2d8e4c59770975415585af20b3d4249ff57b36e.zip binutils-f2d8e4c59770975415585af20b3d4249ff57b36e.tar.gz binutils-f2d8e4c59770975415585af20b3d4249ff57b36e.tar.bz2 |
gdb: rename 'enum range_type' to 'enum range_flag'
To avoid confusion with other parts of GDB relating to types and
ranges, rename this enum to make it clearer that it is a set of
individual flags rather than an enumeration of different types of
range.
There should be no user visible changes after this commit.
gdb/ChangeLog:
* expprint.c (print_subexp_standard): Change enum range_type to
range_flag and rename variables to match.
(dump_subexp_body_standard): Likewise.
* expression.h (enum range_type): Rename to...
(enum range_flag): ...this.
(range_types): Rename to...
(range_flags): ...this.
* f-lang.c (value_f90_subarray): Change enum range_type to
range_flag and rename variables to match.
* parse.c (operator_length_standard): Likewise.
* rust-exp.y (rust_parser::convert_ast_to_expression): Change enum
range_type to range_flag.
* rust-lang.c (rust_evaluate_funcall): Likewise.
(rust_range): Likewise.
(rust_compute_range): Likewise.
(rust_subscript): Likewise.
Diffstat (limited to 'gdb/expression.h')
-rw-r--r-- | gdb/expression.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/expression.h b/gdb/expression.h index 6bd3fc0..fd483e5 100644 --- a/gdb/expression.h +++ b/gdb/expression.h @@ -185,7 +185,7 @@ extern void dump_prefix_expression (struct expression *, struct ui_file *); or inclusive. So we have six sorts of subrange. This enumeration type is to identify this. */ -enum range_type : unsigned +enum range_flag : unsigned { /* This is a standard range. Both the lower and upper bounds are defined, and the bounds are inclusive. */ @@ -201,6 +201,6 @@ enum range_type : unsigned RANGE_HIGH_BOUND_EXCLUSIVE = 1 << 2, }; -DEF_ENUM_FLAGS_TYPE (enum range_type, range_types); +DEF_ENUM_FLAGS_TYPE (enum range_flag, range_flags); #endif /* !defined (EXPRESSION_H) */ |