diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-06-14 16:31:43 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-06-15 18:31:00 -0700 |
commit | c7a7cb5692690ad621b6eb2d1c7256907ff45d67 (patch) | |
tree | e332f563bf7402d76b866b40f46dfe8e401f724d /include/qemu | |
parent | 8bae43fa1a3d4d9d5aa589984235db6865f5a347 (diff) | |
download | qemu-c7a7cb5692690ad621b6eb2d1c7256907ff45d67.zip qemu-c7a7cb5692690ad621b6eb2d1c7256907ff45d67.tar.gz qemu-c7a7cb5692690ad621b6eb2d1c7256907ff45d67.tar.bz2 |
configure: Remove probe for _Static_assert
_Static_assert is part of C11, which is now required.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210614233143.1221879-9-richard.henderson@linaro.org>
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/compiler.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/qemu/compiler.h b/include/qemu/compiler.h index 5766d61..3baa5e3 100644 --- a/include/qemu/compiler.h +++ b/include/qemu/compiler.h @@ -72,18 +72,7 @@ int:(x) ? -1 : 1; \ } -/* QEMU_BUILD_BUG_MSG() emits the message given if _Static_assert is - * supported; otherwise, it will be omitted from the compiler error - * message (but as it remains present in the source code, it can still - * be useful when debugging). */ -#if defined(CONFIG_STATIC_ASSERT) #define QEMU_BUILD_BUG_MSG(x, msg) _Static_assert(!(x), msg) -#elif defined(__COUNTER__) -#define QEMU_BUILD_BUG_MSG(x, msg) typedef QEMU_BUILD_BUG_ON_STRUCT(x) \ - glue(qemu_build_bug_on__, __COUNTER__) __attribute__((unused)) -#else -#define QEMU_BUILD_BUG_MSG(x, msg) -#endif #define QEMU_BUILD_BUG_ON(x) QEMU_BUILD_BUG_MSG(x, "not expecting: " #x) |