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

Richard Henderson posted 6 patches 3 years, 10 months ago
Test FreeBSD passed
Test asan passed
Test docker-quick@centos7 passed
Test checkpatch passed
Test docker-mingw@fedora passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200617201309.1640952-1-richard.henderson@linaro.org
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(-)
[PATCH v4 0/6] Vs clang-10 and gcc-9 warnings
Posted by Richard Henderson 3 years, 10 months ago
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


Re: [PATCH v4 0/6] Vs clang-10 and gcc-9 warnings
Posted by Peter Maydell 3 years, 10 months ago
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