From: Yu Watanabe Date: Mon, 31 Jul 2023 14:41:12 +0000 (+0900) Subject: test: update comment to make it consistent with the condition X-Git-Tag: v255-rc1~871 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0bf67ba2d48c4e81b80e139959e6c3ec6e0970e9;p=thirdparty%2Fsystemd.git test: update comment to make it consistent with the condition Follow-up for 6425dec88b9dedf53d12a970339ab88f948c201a. --- diff --git a/src/test/test-bitfield.c b/src/test/test-bitfield.c index 0f29c5d8bf5..f26b423940e 100644 --- a/src/test/test-bitfield.c +++ b/src/test/test-bitfield.c @@ -214,7 +214,7 @@ TEST(bits) { /* Verify these use cases are constant-folded. */ #if !defined(__clang__) || (__clang_major__ >= 13) - /* Clang 11 doesn't grok those; skip them. */ + /* Clang 11 and 12 (and possibly older) do not grok those; skip them. */ assert_cc(__builtin_constant_p(INDEX_TO_MASK(uint8_t, 1))); assert_cc(__builtin_constant_p(INDEX_TO_MASK(uint16_t, 1))); assert_cc(__builtin_constant_p(INDEX_TO_MASK(uint32_t, 1)));