diff options
author | Tom Tromey <tom@tromey.com> | 2019-04-24 16:19:51 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-05-04 14:13:28 -0600 |
commit | 9c056022194f9d1f068885cb45c9d23a2e44db54 (patch) | |
tree | c8af01c85a56a84e877ea86f96d6180b1afecc2c | |
parent | fa9c2a59e3110d8c7d37c1fa602cb6b25b796dc7 (diff) | |
download | gdb-9c056022194f9d1f068885cb45c9d23a2e44db54.zip gdb-9c056022194f9d1f068885cb45c9d23a2e44db54.tar.gz gdb-9c056022194f9d1f068885cb45c9d23a2e44db54.tar.bz2 |
Use "false" in compile_cplus_convert_enum
This changes compile_cplus_convert_enum to use "false".
Note that this variable is never modified, which seems like an error.
I filed PR compile/24473 for this.
gdb/ChangeLog
2019-05-04 Tom Tromey <tom@tromey.com>
* compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
"false".
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/compile/compile-cplus-types.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d0a6f3a..4763a83 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2019-05-04 Tom Tromey <tom@tromey.com> + * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use + "false". + +2019-05-04 Tom Tromey <tom@tromey.com> + * arc-tdep.c (arc_tdesc_init): Use bool. 2019-05-04 Tom Tromey <tom@tromey.com> diff --git a/gdb/compile/compile-cplus-types.c b/gdb/compile/compile-cplus-types.c index ee3bb43..6923930 100644 --- a/gdb/compile/compile-cplus-types.c +++ b/gdb/compile/compile-cplus-types.c @@ -910,7 +910,7 @@ static gcc_type compile_cplus_convert_enum (compile_cplus_instance *instance, struct type *type, enum gcc_cp_symbol_kind nested_access) { - int scoped_enum_p = FALSE; + bool scoped_enum_p = false; /* Create a new scope for this type. */ compile_scope scope = instance->new_scope (TYPE_NAME (type), type); |