mbox series

[v4,0/6] Vs clang-10 and gcc-9 warnings

Message ID 20200617201309.1640952-1-richard.henderson@linaro.org
Headers show
Series Vs clang-10 and gcc-9 warnings | expand

Message

Richard Henderson June 17, 2020, 8:13 p.m. UTC
Three of these patches are for cleaning up warnings vs clang-10.

All of the patches from v3 are reviewed.  The final patch is new,
fixing a problem in "make check" (which I was clearly lax in not
seeing before).


r~


Philippe Mathieu-Daudé (1):
  fpu/softfloat: Silence 'bitwise negation of boolean expression'
    warning

Richard Henderson (4):
  configure: Clean up warning flag lists
  configure: Disable -Wtautological-type-limit-compare
  configure: Add -Wno-psabi
  qht: Fix threshold rate calculation

Wei Wang (1):
  migration: fix xbzrle encoding rate calculation

 configure             | 44 +++++++++++++++++++++++++++++++++----------
 fpu/softfloat.c       | 33 +++++++++++++++++++++++---------
 migration/ram.c       |  4 +---
 tests/qht-bench.c     |  3 ++-
 tests/plugin/Makefile |  2 +-
 5 files changed, 62 insertions(+), 24 deletions(-)

-- 
2.25.1

Comments

Peter Maydell June 18, 2020, 10:22 a.m. UTC | #1
On Wed, 17 Jun 2020 at 21:14, Richard Henderson
<richard.henderson@linaro.org> wrote:
>

> Three of these patches are for cleaning up warnings vs clang-10.

>

> All of the patches from v3 are reviewed.  The final patch is new,

> fixing a problem in "make check" (which I was clearly lax in not

> seeing before).


I've applied patches 1-5 to master in the hope that they
might make patchew's asan builder happier, though it might
still fail on the issue patch 6 is trying to address.

thanks
-- PMM