This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH] gdb/dwarf: Convert some predicates from int to bool
- From: Simon Marchi <simon dot marchi at polymtl dot ca>
- To: Andrew Burgess <andrew dot burgess at embecosm dot com>
- Cc: gdb-patches at sourceware dot org
- Date: Fri, 14 Dec 2018 16:56:38 -0500
- Subject: Re: [PATCH] gdb/dwarf: Convert some predicates from int to bool
- References: <20181212213624.27240-1-andrew.burgess@embecosm.com>
On 2018-12-12 16:36, Andrew Burgess wrote:
In the dwarf reader we have a set of predicates, these include the
different producer predicates and also some control predicates. The
older ones are declared as integers, while newer ones (added since the
C++ conversion) are bool.
This commit makes them all bool for consistency. There should be no
user visible change after this commit.
Thanks a lot, this LGTM.
Simon