Home
last modified time | relevance | path

Searched hist:bbf901914170c6ee423beb3b8c510038c16d082f (Results 1 – 1 of 1) sorted by relevance

/qemu/system/
H A Dphysmem.cbbf901914170c6ee423beb3b8c510038c16d082f Sun Jan 17 17:04:11 UTC 2021 Philippe Mathieu-Daudé <f4bug@amsat.org> softmmu/physmem: Silence GCC 10 maybe-uninitialized error

When building with GCC 10.2 configured with --extra-cflags=-Os, we get:

softmmu/physmem.c: In function 'address_space_translate_for_iotlb':
softmmu/physmem.c:643:26: error: 'notifier' may be used uninitialized in this function [-Werror=maybe-uninitialized]
643 | notifier->active = true;
| ^
softmmu/physmem.c:608:23: note: 'notifier' was declared here
608 | TCGIOMMUNotifier *notifier;
| ^~~~~~~~

Initialize 'notifier' to silence the warning.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210117170411.4106949-1-f4bug@amsat.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>