diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2022-04-20 17:21:45 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2022-05-03 15:16:23 +0400 |
commit | 638466f777dc385dbd9b581ea31c6defd5f75efe (patch) | |
tree | d4efccf7a96a5a99c832d988255d181d2c6718f6 /util | |
parent | ef0f4bda2e369418cdbe0c02584ae75015fb97c1 (diff) |
Use QEMU_SANITIZE_ADDRESS
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/coroutine-ucontext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/coroutine-ucontext.c b/util/coroutine-ucontext.c index 904b375192..ed368e1a3e 100644 --- a/util/coroutine-ucontext.c +++ b/util/coroutine-ucontext.c @@ -30,7 +30,7 @@ #include <valgrind/valgrind.h> #endif -#if defined(__SANITIZE_ADDRESS__) || __has_feature(address_sanitizer) +#ifdef QEMU_SANITIZE_ADDRESS #ifdef CONFIG_ASAN_IFACE_FIBER #define CONFIG_ASAN 1 #include <sanitizer/asan_interface.h> |