Home
last modified time | relevance | path

Searched refs:__has_warning (Results 1 – 9 of 9) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/microsoft-gsl/microsoft-gsl/
H A D0002-Fix-gcc-build-problem.patch24 -#if defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
26 +#if __has_warning("-Wunsafe-buffer-usage")
29 -#endif // defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
30 +#endif // __has_warning("-Wunsafe-buffer-usage")
39 -#if defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
41 +#if __has_warning("-Wunsafe-buffer-usage")
44 +#endif // __has_warning("-Wunsafe-buffer-usage")
56 -#if defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
58 +#if __has_warning("-Wunsafe-buffer-usage")
61 -#endif // defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
[all …]
H A D0001-Fix-initialization-in-test-1140.patch27 +#if defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
30 +#endif // defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
39 +#if defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
53 +#if defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
56 +#endif // defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
65 +#if defined(__clang__) && __has_warning("-Wunsafe-buffer-usage")
/openbmc/qemu/subprojects/libvhost-user/include/
H A Dcompiler.h92 #ifndef __has_warning
93 #define __has_warning(x) 0 /* compatibility with non-clang compilers */ macro
/openbmc/qemu/subprojects/libvduse/include/
H A Dcompiler.h92 #ifndef __has_warning
93 #define __has_warning(x) 0 /* compatibility with non-clang compilers */ macro
/openbmc/qemu/include/qemu/
H A Dcompiler.h92 #ifndef __has_warning
93 #define __has_warning(x) 0 /* compatibility with non-clang compilers */ macro
/openbmc/qemu/linux-user/
H A Dqemu.h211 #if defined(__clang__) && __has_warning("-Waddress-of-packed-member")
/openbmc/qemu/bsd-user/
H A Dqemu.h308 #if defined(__clang__) && __has_warning("-Waddress-of-packed-member")
/openbmc/qemu/util/
H A Dcutils.c1020 #if !defined(__clang__) || __has_warning("-Warray-bounds=") in starts_with_prefix()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/ssiapi/ssiapi/
H A D0002-boost-Backport-clang-support.patch106 +#if __cplusplus >= 201103L && defined(__has_warning)
107 +# if __has_feature(cxx_attributes) && __has_warning("-Wimplicit-fallthrough")