From b05ecb8cadd8c32d31b1aabcff4e507bd89b5465 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 9 Jun 2018 13:12:52 +0200 Subject: [PATCH] meson: do not allow bit-shift overflows The primary motivation is to catch enum values created through a shift that is too big: ../src/test/test-sizeof.c:26:29: error: left shift count >= width of type [-Werror=shift-count-overflow] enum_with_shift = 1 << 32, ^~ cc1: some warnings being treated as errors The compiler will now reject those. This is an alternative to #9224. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index a4c2368df9..29ee446d56 100644 --- a/meson.build +++ b/meson.build @@ -319,6 +319,7 @@ possible_cc_flags = [ '-Wstrict-aliasing=2', '-Wwrite-strings', '-Werror=overflow', + '-Werror=shift-count-overflow', '-Wdate-time', '-Wnested-externs', '-ffast-math',