Hi, can you please also squash those changes which fixes patch #1 so it is easier to review? Honza > From: Jørgen Kvalsvik <jorgen.kvalsvik@woven.toyota> > > --- > gcc/gcov.cc | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/gcc/gcov.cc b/gcc/gcov.cc > index 274f2fc5d9f..35be97cf5ac 100644 > --- a/gcc/gcov.cc > +++ b/gcc/gcov.cc > @@ -46,6 +46,7 @@ along with Gcov; see the file COPYING3. If not see > #include "color-macros.h" > #include "pretty-print.h" > #include "json.h" > +#include "hwint.h" > > #include <zlib.h> > #include <getopt.h> > @@ -159,7 +160,7 @@ condition_info::condition_info (): truev (0), falsev (0), > n_terms (0) > > int condition_info::popcount () const > { > - return __builtin_popcountll (truev) + __builtin_popcountll (falsev); > + return popcount_hwi (truev) + popcount_hwi (falsev); > } > > /* Describes a basic block. Contains lists of arcs to successor and > -- > 2.30.2 >
- [PATCH v5] Add condition coverage profiling Jørgen Kvalsvik
- [PATCH 02/22] Add "Condition coverage profiling... Jørgen Kvalsvik
- [PATCH 03/22] Mention relevant flags in condition co... Jørgen Kvalsvik
- [PATCH 05/22] Describe condition_info Jørgen Kvalsvik
- [PATCH 04/22] Describe, remove ATTRIBUTE_UNUSED from... Jørgen Kvalsvik
- [PATCH 01/22] Add condition coverage profiling Jørgen Kvalsvik
- [PATCH 06/22] Use popcount_hwi rather than builtin Jørgen Kvalsvik
- Re: [PATCH 06/22] Use popcount_hwi rather than b... Jan Hubicka
- [PATCH 10/22] Prune search for boolean expr on goto,... Jørgen Kvalsvik
- [PATCH 16/22] Rename pathological -> setjmp Jørgen Kvalsvik
- [PATCH 15/22] Fix candidate, neighborhood set reduct... Jørgen Kvalsvik
- [PATCH 07/22] Describe add_condition_counts Jørgen Kvalsvik
- [PATCH 12/22] Do two-phase filtering in expr isolati... Jørgen Kvalsvik
- [PATCH 18/22] Don't contract into random edge in mul... Jørgen Kvalsvik
- Re: [PATCH 18/22] Don't contract into random edg... Jørgen Kvalsvik
- [PATCH 08/22] Describe output_conditions Jørgen Kvalsvik
- [PATCH 19/22] Beautify assert Jørgen Kvalsvik
- [PATCH 13/22] Handle split-outcome with intrusive fl... Jørgen Kvalsvik