Skip to content

Conversation

@shri-acha
Copy link

Covers the test for AVX512 comparison intrinsics mentioned in:
#162054

@github-actions
Copy link

Thank you for submitting a Pull Request (PR) to the LLVM Project!

This PR will be automatically labeled and the relevant teams will be notified.

If you wish to, you can add reviewers by using the "Reviewers" section on this page.

If this is not working for you, it is probably because you do not have write permissions for the repository. In which case you can instead tag reviewers by name in a comment by using @ followed by their GitHub username.

If you have received no comments on your PR for a week, you can request a review by "ping"ing the PR by adding a comment “Ping”. The common courtesy "ping" rate is once a week. Please remember that you are asking for valuable time from other developers.

If you have further questions, they may be answered by the LLVM GitHub User Guide.

You can also ask questions in a comment on this PR, on the LLVM Discord or on the forums.

@llvmbot llvmbot added clang Clang issues not falling into any other category backend:X86 labels Nov 25, 2025
@llvmbot
Copy link
Member

llvmbot commented Nov 25, 2025

@llvm/pr-subscribers-backend-x86

@llvm/pr-subscribers-clang

Author: irhs0 (shri-acha)

Changes

Covers the test for AVX512 comparison intrinsics mentioned in:
#162054


Full diff: https://github.com/llvm/llvm-project/pull/169452.diff

1 Files Affected:

  • (modified) clang/test/CodeGen/X86/avx512vlbw-builtins.c (+112-9)
diff --git a/clang/test/CodeGen/X86/avx512vlbw-builtins.c b/clang/test/CodeGen/X86/avx512vlbw-builtins.c
index 16e113031bfda..cb69205664a3d 100644
--- a/clang/test/CodeGen/X86/avx512vlbw-builtins.c
+++ b/clang/test/CodeGen/X86/avx512vlbw-builtins.c
@@ -645,20 +645,123 @@ __mmask16 test_mm_cmp_epi8_mask(__m128i __a, __m128i __b) {
   return (__mmask16)_mm_cmp_epi8_mask(__a, __b, 0);
 }
 
+// cmpeq tests
 TEST_CONSTEXPR(_mm_cmpeq_epi8_mask(
-    ((__m128i)(__v16qi){5, 3, 7, 2, 9, 3, 7, 1, 5, 4, 8, 2, 9, 6, 7, 5}),
-    ((__m128i)(__v16qi){5, 2, 7, 3, 9, 4, 6, 1, 5, 3, 8, 1, 9, 5, 7, 5})
-) == (__mmask16)0xd595);
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}),
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})
+) == (__mmask16)0xffff);
+
+TEST_CONSTEXPR(_mm_cmpeq_epi8_mask(
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}),
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1})
+) == (__mmask16)0xffff);
+
+TEST_CONSTEXPR(_mm_cmpeq_epi8_mask(
+    ((__m128i)(__v16qi){127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127}),
+    ((__m128i)(__v16qi){-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128})
+) == (__mmask16)0x0000);
+
+TEST_CONSTEXPR(_mm_cmpeq_epi8_mask(
+    ((__m128i)(__v16qi){-31, 90, -66, 3, 27, -22, -64, 111, -87, 105, -19, 0, 26, -111, 24, -72}),
+    ((__m128i)(__v16qi){-84, -98, 20, -83, -98, 80, -46, -9, 22, -120, -123, 53, 117, -85, 50, 94})
+) == (__mmask16)0x0000);
+
+// cmpneq tests
+TEST_CONSTEXPR(_mm_cmpneq_epi8_mask(
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}),
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})
+) == (__mmask16)0x0000);
+
+TEST_CONSTEXPR(_mm_cmpneq_epi8_mask(
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}),
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1})
+) == (__mmask16)0x0000);
+
+TEST_CONSTEXPR(_mm_cmpneq_epi8_mask(
+    ((__m128i)(__v16qi){127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127}),
+    ((__m128i)(__v16qi){-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128})
+) == (__mmask16)0xffff);
+
+TEST_CONSTEXPR(_mm_cmpneq_epi8_mask(
+    ((__m128i)(__v16qi){-2, 49, -5, -11, 21, -70, 121, -111, 20, 112, -121, 18, -34, -73, 89, 122}),
+    ((__m128i)(__v16qi){14, 36, 2, 3, 118, 88, -126, -21, 104, -125, -1, 39, 99, -12, 35, -126})
+) == (__mmask16)0xffff);
+
+// cmplt tests
+TEST_CONSTEXPR(_mm_cmplt_epi8_mask(
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}),
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})
+) == (__mmask16)0x0000);
 
 TEST_CONSTEXPR(_mm_cmplt_epi8_mask(
-    ((__m128i)(__v16qi){1, 5, 3, 7, 2, 8, 4, 6, 9, 5, 3, 11, 2, 6, 15, 8}),
-    ((__m128i)(__v16qi){2, 4, 6, 8, 3, 5, 7, 9, 4, 6, 8, 10, 5, 7, 9, 11})
-) == (__mmask16)0xb6dd);
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}),
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1})
+) == (__mmask16)0x0000);
 
+TEST_CONSTEXPR(_mm_cmplt_epi8_mask(
+    ((__m128i)(__v16qi){127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127}),
+    ((__m128i)(__v16qi){-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128})
+) == (__mmask16)0x0000);
+
+TEST_CONSTEXPR(_mm_cmplt_epi8_mask(
+    ((__m128i)(__v16qi){-111, -10, -60, -123, -6, -110, -43, -32, -58, -7, 42, -128, -21, 24, 8, -101}),
+    ((__m128i)(__v16qi){-108, 30, 71, 73, 20, 117, 63, -93, 79, -30, 99, -100, 34, 49, 83, 68})
+) == (__mmask16)0xfd7f);
+
+// cmple tests
+TEST_CONSTEXPR(_mm_cmple_epi8_mask(
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}),
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})
+) == (__mmask16)0xffff);
 TEST_CONSTEXPR(_mm_cmple_epi8_mask(
-    ((__m128i)(__v16qi){1, 3, 5, 7, 2, 6, 6, 8, 1, 3, 9, 7, 2, 4, 6, 10}),
-    ((__m128i)(__v16qi){2, 3, 4, 7, 3, 4, 5, 8, 2, 3, 4, 7, 3, 4, 5, 8})
-) == (__mmask16)0x3b9b);
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}),
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1})
+) == (__mmask16)0xffff);
+TEST_CONSTEXPR(_mm_cmple_epi8_mask(
+    ((__m128i)(__v16qi){127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127}),
+    ((__m128i)(__v16qi){-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128})
+) == (__mmask16)0x0000);
+TEST_CONSTEXPR(_mm_cmple_epi8_mask(
+    ((__m128i)(__v16qi){122, 6, -22, -94, 78, -35, -43, -16, -69, 124, -2, 24, -117, 8, -17, 118}),
+    ((__m128i)(__v16qi){53, -50, 104, 11, 63, -77, -25, 102, 46, 62, 27, -28, -61, 68, 40, -65})
+) == (__mmask16)0x75cc);
+
+// cmpge tests
+TEST_CONSTEXPR(_mm_cmpge_epi8_mask(
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}),
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})
+) == (__mmask16)0xffff);
+TEST_CONSTEXPR(_mm_cmpge_epi8_mask(
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}),
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1})
+) == (__mmask16)0xffff);
+TEST_CONSTEXPR(_mm_cmpge_epi8_mask(
+    ((__m128i)(__v16qi){127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127}),
+    ((__m128i)(__v16qi){-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128})
+) == (__mmask16)0xffff);
+TEST_CONSTEXPR(_mm_cmpge_epi8_mask(
+    ((__m128i)(__v16qi){-11, 0, 97, 123, -48, 105, 26, -118, 62, -86, -94, -32, 14, -4, -50, 72}),
+    ((__m128i)(__v16qi){-33, 49, 22, 31, -4, -81, 6, -22, 40, 127, -1, -106, 6, -64, 12, 8})
+) == (__mmask16)0xb96d);
+
+// cmpgt tests
+TEST_CONSTEXPR(_mm_cmpgt_epi8_mask(
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}),
+    ((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})
+) == (__mmask16)0x0000);
+TEST_CONSTEXPR(_mm_cmpgt_epi8_mask(
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}),
+    ((__m128i)(__v16qi){1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1})
+) == (__mmask16)0x0000);
+TEST_CONSTEXPR(_mm_cmpgt_epi8_mask(
+    ((__m128i)(__v16qi){127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127}),
+    ((__m128i)(__v16qi){-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128})
+) == (__mmask16)0xffff);
+TEST_CONSTEXPR(_mm_cmpgt_epi8_mask(
+    ((__m128i)(__v16qi){-127, 37, -123, -60, 98, -68, -115, 96, 80, -27, -105, 64, -6, -51, -45, -81}),
+    ((__m128i)(__v16qi){-124, 59, 8, 59, 122, 47, -74, 120, 19, -43, -33, -76, 7, -22, -24, -14})
+) == (__mmask16)0x0b00);
+
 
 __mmask16 test_mm_mask_cmp_epi8_mask(__mmask16 __u, __m128i __a, __m128i __b) {
   // CHECK-LABEL: test_mm_mask_cmp_epi8_mask

@shri-acha shri-acha marked this pull request as draft November 25, 2025 04:41
@shri-acha
Copy link
Author

@RKSimon could you verify the nature of the tests?, after i'll add the other generated tests from the script

@RKSimon RKSimon self-requested a review November 25, 2025 09:49
@github-actions
Copy link

⚠️ We detected that you are using a GitHub private e-mail address to contribute to the repo.
Please turn off Keep my email addresses private setting in your account.
See LLVM Developer Policy and LLVM Discourse for more information.

) == (__mmask16)0xd595);
((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}),
((__m128i)(__v16qi){0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})
) == (__mmask16)0xffff);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

avoid 'splat' tests like this - all ones/zero results always make me suspicious :)

Copy link
Author

@shri-acha shri-acha Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:) okay ,will modify the 'splat' cases here onwards.

((__m128i)(__v16qi){-31, 90, -66, 3, 27, -22, -64, 111, -87, 105, -19, 0, 26, -111, 24, -72}),
((__m128i)(__v16qi){-84, -98, 20, -83, -98, 80, -46, -9, 22, -120, -123, 53, 117, -85, 50, 94})
) == (__mmask16)0x0000);

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need _mm_mask_cmpeq_epi8_mask (et al) test coverage as well

Copy link
Author

@shri-acha shri-acha Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, I do have those in mind aswell, i will cover those after all of the _mm_mask_cmp*_epi* are complete.

@github-actions
Copy link

🐧 Linux x64 Test Results

  • 84750 tests passed
  • 1116 tests skipped
  • 1 test failed

Failed Tests

(click on a test name to see its output)

Clang

Clang.CodeGen/X86/avx512vlbw-builtins.c
Exit Code: 2

Command Output (stdout):
--
# RUN: at line 1
/home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/clang -cc1 -internal-isystem /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include -nostdsysteminc -x c -flax-vector-conversions=none -ffreestanding /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c -triple=x86_64-apple-darwin -target-feature +avx512bw -target-feature +avx512vl -emit-llvm -o - -Wall -Werror -Wsign-conversion | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/FileCheck /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c
# executed command: /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/clang -cc1 -internal-isystem /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include -nostdsysteminc -x c -flax-vector-conversions=none -ffreestanding /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c -triple=x86_64-apple-darwin -target-feature +avx512bw -target-feature +avx512vl -emit-llvm -o - -Wall -Werror -Wsign-conversion
# note: command had no output on stdout or stderr
# executed command: /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/FileCheck /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c
# note: command had no output on stdout or stderr
# RUN: at line 2
/home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/clang -cc1 -internal-isystem /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include -nostdsysteminc -x c -flax-vector-conversions=none -ffreestanding /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c -triple=x86_64-apple-darwin -target-feature +avx512bw -target-feature +avx512vl -fno-signed-char -emit-llvm -o - -Wall -Werror -Wsign-conversion | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/FileCheck /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c
# executed command: /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/clang -cc1 -internal-isystem /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include -nostdsysteminc -x c -flax-vector-conversions=none -ffreestanding /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c -triple=x86_64-apple-darwin -target-feature +avx512bw -target-feature +avx512vl -fno-signed-char -emit-llvm -o - -Wall -Werror -Wsign-conversion
# note: command had no output on stdout or stderr
# executed command: /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/FileCheck /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c
# note: command had no output on stdout or stderr
# RUN: at line 3
/home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/clang -cc1 -internal-isystem /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include -nostdsysteminc -x c -flax-vector-conversions=none -ffreestanding /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c -triple=x86_64-apple-darwin -target-feature +avx10.1 -emit-llvm -o - -Wall -Werror -Wsign-conversion | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/FileCheck /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c
# executed command: /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/clang -cc1 -internal-isystem /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include -nostdsysteminc -x c -flax-vector-conversions=none -ffreestanding /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c -triple=x86_64-apple-darwin -target-feature +avx10.1 -emit-llvm -o - -Wall -Werror -Wsign-conversion
# note: command had no output on stdout or stderr
# executed command: /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/FileCheck /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c
# note: command had no output on stdout or stderr
# RUN: at line 4
/home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/clang -cc1 -internal-isystem /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include -nostdsysteminc -x c++ -flax-vector-conversions=none -ffreestanding /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c -triple=x86_64-apple-darwin -target-feature +avx512bw -target-feature +avx512vl -emit-llvm -o - -Wall -Werror -Wsign-conversion | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/FileCheck /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c
# executed command: /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/clang -cc1 -internal-isystem /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include -nostdsysteminc -x c++ -flax-vector-conversions=none -ffreestanding /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c -triple=x86_64-apple-darwin -target-feature +avx512bw -target-feature +avx512vl -emit-llvm -o - -Wall -Werror -Wsign-conversion
# .---command stderr------------
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1077:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){12351, 47995, 11802, 16970, 16956, 13965, 33529, 18928}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){48792, 59915, 50576, 62643, 3758, 16415, 7966, 39475}))), (int)(_MM_CMPINT_LT), (unsigned char)-1)) == (unsigned char)175'
# |  1077 | TEST_CONSTEXPR(_mm_cmplt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1078 |     ((__m128i)(__v8hu){12351, 47995, 11802, 16970, 16956, 13965, 33529, 18928}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1079 |     ((__m128i)(__v8hu){48792, 59915, 50576, 62643, 3758, 16415, 7966, 39475})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1080 | ) == (__mmask8)0xaf);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:282:5: note: expanded from macro '_mm_cmplt_epu16_mask'
# |   282 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_LT)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1080:3: note: expression evaluates to '98 == 175'
# |  1077 | TEST_CONSTEXPR(_mm_cmplt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1078 |     ((__m128i)(__v8hu){12351, 47995, 11802, 16970, 16956, 13965, 33529, 18928}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1079 |     ((__m128i)(__v8hu){48792, 59915, 50576, 62643, 3758, 16415, 7966, 39475})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1080 | ) == (__mmask8)0xaf);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1081:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){64376, 821, 6646, 56557, 41027, 54650, 38293, 65034}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){16194, 13150, 9765, 40643, 62592, 32105, 37358, 43042}))), (int)(_MM_CMPINT_LT), (unsigned char)-1)) == (unsigned char)22'
# |  1081 | TEST_CONSTEXPR(_mm_cmplt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1082 |     ((__m128i)(__v8hu){64376, 821, 6646, 56557, 41027, 54650, 38293, 65034}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1083 |     ((__m128i)(__v8hu){16194, 13150, 9765, 40643, 62592, 32105, 37358, 43042})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1084 | ) == (__mmask8)0x16);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:282:5: note: expanded from macro '_mm_cmplt_epu16_mask'
# |   282 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_LT)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1084:3: note: expression evaluates to '55 == 22'
# |  1081 | TEST_CONSTEXPR(_mm_cmplt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1082 |     ((__m128i)(__v8hu){64376, 821, 6646, 56557, 41027, 54650, 38293, 65034}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1083 |     ((__m128i)(__v8hu){16194, 13150, 9765, 40643, 62592, 32105, 37358, 43042})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1084 | ) == (__mmask8)0x16);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1085:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){5197, 38111, 57400, 21773, 6778, 55251, 43022, 23599}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){25453, 44508, 11034, 51861, 28507, 3586, 50043, 22852}))), (int)(_MM_CMPINT_LT), (unsigned char)-1)) == (unsigned char)91'
# |  1085 | TEST_CONSTEXPR(_mm_cmplt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1086 |     ((__m128i)(__v8hu){5197, 38111, 57400, 21773, 6778, 55251, 43022, 23599}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1087 |     ((__m128i)(__v8hu){25453, 44508, 11034, 51861, 28507, 3586, 50043, 22852})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1088 | ) == (__mmask8)0x5b);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:282:5: note: expanded from macro '_mm_cmplt_epu16_mask'
# |   282 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_LT)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1088:3: note: expression evaluates to '119 == 91'
# |  1085 | TEST_CONSTEXPR(_mm_cmplt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1086 |     ((__m128i)(__v8hu){5197, 38111, 57400, 21773, 6778, 55251, 43022, 23599}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1087 |     ((__m128i)(__v8hu){25453, 44508, 11034, 51861, 28507, 3586, 50043, 22852})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1088 | ) == (__mmask8)0x5b);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1089:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){45352, 2829, 63457, 8858, 31243, 17792, 61465, 39468}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){36906, 65156, 12702, 36312, 25463, 30740, 17784, 16985}))), (int)(_MM_CMPINT_LT), (unsigned char)-1)) == (unsigned char)42'
# |  1089 | TEST_CONSTEXPR(_mm_cmplt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1090 |     ((__m128i)(__v8hu){45352, 2829, 63457, 8858, 31243, 17792, 61465, 39468}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1091 |     ((__m128i)(__v8hu){36906, 65156, 12702, 36312, 25463, 30740, 17784, 16985})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1092 | ) == (__mmask8)0x2a);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:282:5: note: expanded from macro '_mm_cmplt_epu16_mask'
# |   282 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_LT)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1092:3: note: expression evaluates to '228 == 42'
# |  1089 | TEST_CONSTEXPR(_mm_cmplt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1090 |     ((__m128i)(__v8hu){45352, 2829, 63457, 8858, 31243, 17792, 61465, 39468}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1091 |     ((__m128i)(__v8hu){36906, 65156, 12702, 36312, 25463, 30740, 17784, 16985})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1092 | ) == (__mmask8)0x2a);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1093:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){55773, 8388, 56635, 32082, 18204, 53351, 33529, 17025}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){40397, 47032, 24886, 11409, 5864, 42244, 24984, 9087}))), (int)(_MM_CMPINT_LT), (unsigned char)-1)) == (unsigned char)2'
# |  1093 | TEST_CONSTEXPR(_mm_cmplt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1094 |     ((__m128i)(__v8hu){55773, 8388, 56635, 32082, 18204, 53351, 33529, 17025}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1095 |     ((__m128i)(__v8hu){40397, 47032, 24886, 11409, 5864, 42244, 24984, 9087})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1096 | ) == (__mmask8)0x02);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:282:5: note: expanded from macro '_mm_cmplt_epu16_mask'
# |   282 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_LT)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1096:3: note: expression evaluates to '68 == 2'
# |  1093 | TEST_CONSTEXPR(_mm_cmplt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1094 |     ((__m128i)(__v8hu){55773, 8388, 56635, 32082, 18204, 53351, 33529, 17025}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1095 |     ((__m128i)(__v8hu){40397, 47032, 24886, 11409, 5864, 42244, 24984, 9087})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1096 | ) == (__mmask8)0x02);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1099:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){7117, 51838, 34713, 59818, 13657, 57172, 51354, 44657}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){43684, 29399, 39679, 60107, 61794, 25979, 20734, 59740}))), (int)(_MM_CMPINT_LE), (unsigned char)-1)) == (unsigned char)157'
# |  1099 | TEST_CONSTEXPR(_mm_cmple_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1100 |     ((__m128i)(__v8hu){7117, 51838, 34713, 59818, 13657, 57172, 51354, 44657}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1101 |     ((__m128i)(__v8hu){43684, 29399, 39679, 60107, 61794, 25979, 20734, 59740})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1102 | ) == (__mmask8)0x9d);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:278:5: note: expanded from macro '_mm_cmple_epu16_mask'
# |   278 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_LE)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1102:3: note: expression evaluates to '238 == 157'
# |  1099 | TEST_CONSTEXPR(_mm_cmple_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1100 |     ((__m128i)(__v8hu){7117, 51838, 34713, 59818, 13657, 57172, 51354, 44657}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1101 |     ((__m128i)(__v8hu){43684, 29399, 39679, 60107, 61794, 25979, 20734, 59740})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1102 | ) == (__mmask8)0x9d);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1103:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){34191, 12870, 38578, 50725, 13944, 40695, 8891, 56035}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){15935, 55419, 10154, 43268, 20049, 46161, 14264, 35221}))), (int)(_MM_CMPINT_LE), (unsigned char)-1)) == (unsigned char)114'
# |  1103 | TEST_CONSTEXPR(_mm_cmple_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1104 |     ((__m128i)(__v8hu){34191, 12870, 38578, 50725, 13944, 40695, 8891, 56035}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1105 |     ((__m128i)(__v8hu){15935, 55419, 10154, 43268, 20049, 46161, 14264, 35221})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1106 | ) == (__mmask8)0x72);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:278:5: note: expanded from macro '_mm_cmple_epu16_mask'
# |   278 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_LE)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1106:3: note: expression evaluates to '117 == 114'
# |  1103 | TEST_CONSTEXPR(_mm_cmple_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1104 |     ((__m128i)(__v8hu){34191, 12870, 38578, 50725, 13944, 40695, 8891, 56035}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1105 |     ((__m128i)(__v8hu){15935, 55419, 10154, 43268, 20049, 46161, 14264, 35221})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1106 | ) == (__mmask8)0x72);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1107:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){33955, 56125, 59463, 56265, 62541, 27516, 15841, 10852}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){110, 25696, 52299, 36663, 26130, 22670, 40665, 36384}))), (int)(_MM_CMPINT_LE), (unsigned char)-1)) == (unsigned char)192'
# |  1107 | TEST_CONSTEXPR(_mm_cmple_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1108 |     ((__m128i)(__v8hu){33955, 56125, 59463, 56265, 62541, 27516, 15841, 10852}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1109 |     ((__m128i)(__v8hu){110, 25696, 52299, 36663, 26130, 22670, 40665, 36384})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1110 | ) == (__mmask8)0xc0);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:278:5: note: expanded from macro '_mm_cmple_epu16_mask'
# |   278 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_LE)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1110:3: note: expression evaluates to '19 == 192'
# |  1107 | TEST_CONSTEXPR(_mm_cmple_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1108 |     ((__m128i)(__v8hu){33955, 56125, 59463, 56265, 62541, 27516, 15841, 10852}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1109 |     ((__m128i)(__v8hu){110, 25696, 52299, 36663, 26130, 22670, 40665, 36384})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1110 | ) == (__mmask8)0xc0);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1111:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){30109, 45669, 64670, 2417, 24233, 12069, 21306, 31838}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){41978, 40368, 4025, 37501, 5634, 43889, 27907, 243}))), (int)(_MM_CMPINT_LE), (unsigned char)-1)) == (unsigned char)105'
# |  1111 | TEST_CONSTEXPR(_mm_cmple_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1112 |     ((__m128i)(__v8hu){30109, 45669, 64670, 2417, 24233, 12069, 21306, 31838}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1113 |     ((__m128i)(__v8hu){41978, 40368, 4025, 37501, 5634, 43889, 27907, 243})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1114 | ) == (__mmask8)0x69);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:278:5: note: expanded from macro '_mm_cmple_epu16_mask'
# |   278 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_LE)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1114:3: note: expression evaluates to '68 == 105'
# |  1111 | TEST_CONSTEXPR(_mm_cmple_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1112 |     ((__m128i)(__v8hu){30109, 45669, 64670, 2417, 24233, 12069, 21306, 31838}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1113 |     ((__m128i)(__v8hu){41978, 40368, 4025, 37501, 5634, 43889, 27907, 243})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1114 | ) == (__mmask8)0x69);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1115:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){30467, 14437, 9940, 54360, 37732, 61408, 1077, 33377}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){21329, 57575, 30740, 42725, 26374, 53724, 12, 11808}))), (int)(_MM_CMPINT_LE), (unsigned char)-1)) == (unsigned char)6'
# |  1115 | TEST_CONSTEXPR(_mm_cmple_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1116 |     ((__m128i)(__v8hu){30467, 14437, 9940, 54360, 37732, 61408, 1077, 33377}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1117 |     ((__m128i)(__v8hu){21329, 57575, 30740, 42725, 26374, 53724, 12, 11808})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1118 | ) == (__mmask8)0x06);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:278:5: note: expanded from macro '_mm_cmple_epu16_mask'
# |   278 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_LE)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1118:3: note: expression evaluates to '148 == 6'
# |  1115 | TEST_CONSTEXPR(_mm_cmple_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1116 |     ((__m128i)(__v8hu){30467, 14437, 9940, 54360, 37732, 61408, 1077, 33377}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1117 |     ((__m128i)(__v8hu){21329, 57575, 30740, 42725, 26374, 53724, 12, 11808})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1118 | ) == (__mmask8)0x06);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1121:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){18151, 20516, 44819, 57353, 65147, 3123, 59838, 46999}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){55970, 31815, 16503, 37882, 46380, 47912, 2076, 33014}))), (int)(_MM_CMPINT_NLT), (unsigned char)-1)) == (unsigned char)220'
# |  1121 | TEST_CONSTEXPR(_mm_cmpge_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1122 |     ((__m128i)(__v8hu){18151, 20516, 44819, 57353, 65147, 3123, 59838, 46999}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1123 |     ((__m128i)(__v8hu){55970, 31815, 16503, 37882, 46380, 47912, 2076, 33014})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1124 | ) == (__mmask8)0xdc);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:270:5: note: expanded from macro '_mm_cmpge_epu16_mask'
# |   270 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_GE)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1124:3: note: expression evaluates to '185 == 220'
# |  1121 | TEST_CONSTEXPR(_mm_cmpge_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1122 |     ((__m128i)(__v8hu){18151, 20516, 44819, 57353, 65147, 3123, 59838, 46999}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1123 |     ((__m128i)(__v8hu){55970, 31815, 16503, 37882, 46380, 47912, 2076, 33014})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1124 | ) == (__mmask8)0xdc);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1125:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){60160, 48803, 35124, 42510, 62783, 18767, 26220, 16209}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){22162, 54330, 56847, 11199, 46429, 7012, 12165, 42137}))), (int)(_MM_CMPINT_NLT), (unsigned char)-1)) == (unsigned char)121'
# |  1125 | TEST_CONSTEXPR(_mm_cmpge_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1126 |     ((__m128i)(__v8hu){60160, 48803, 35124, 42510, 62783, 18767, 26220, 16209}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1127 |     ((__m128i)(__v8hu){22162, 54330, 56847, 11199, 46429, 7012, 12165, 42137})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1128 | ) == (__mmask8)0x79);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:270:5: note: expanded from macro '_mm_cmpge_epu16_mask'
# |   270 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_GE)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1128:3: note: expression evaluates to '240 == 121'
# |  1125 | TEST_CONSTEXPR(_mm_cmpge_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1126 |     ((__m128i)(__v8hu){60160, 48803, 35124, 42510, 62783, 18767, 26220, 16209}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1127 |     ((__m128i)(__v8hu){22162, 54330, 56847, 11199, 46429, 7012, 12165, 42137})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1128 | ) == (__mmask8)0x79);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1129:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){15118, 50748, 64103, 47033, 11223, 61427, 3201, 61926}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){19094, 30041, 5839, 62591, 59904, 1530, 40604, 34353}))), (int)(_MM_CMPINT_NLT), (unsigned char)-1)) == (unsigned char)166'
# |  1129 | TEST_CONSTEXPR(_mm_cmpge_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1130 |     ((__m128i)(__v8hu){15118, 50748, 64103, 47033, 11223, 61427, 3201, 61926}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1131 |     ((__m128i)(__v8hu){19094, 30041, 5839, 62591, 59904, 1530, 40604, 34353})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1132 | ) == (__mmask8)0xa6);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:270:5: note: expanded from macro '_mm_cmpge_epu16_mask'
# |   270 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_GE)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1132:3: note: expression evaluates to '208 == 166'
# |  1129 | TEST_CONSTEXPR(_mm_cmpge_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1130 |     ((__m128i)(__v8hu){15118, 50748, 64103, 47033, 11223, 61427, 3201, 61926}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1131 |     ((__m128i)(__v8hu){19094, 30041, 5839, 62591, 59904, 1530, 40604, 34353})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1132 | ) == (__mmask8)0xa6);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1133:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){37865, 12467, 45289, 60251, 60268, 3908, 51781, 35681}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){30915, 32324, 1515, 24432, 15318, 33790, 22826, 64258}))), (int)(_MM_CMPINT_NLT), (unsigned char)-1)) == (unsigned char)93'
# |  1133 | TEST_CONSTEXPR(_mm_cmpge_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1134 |     ((__m128i)(__v8hu){37865, 12467, 45289, 60251, 60268, 3908, 51781, 35681}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1135 |     ((__m128i)(__v8hu){30915, 32324, 1515, 24432, 15318, 33790, 22826, 64258})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1136 | ) == (__mmask8)0x5d);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:270:5: note: expanded from macro '_mm_cmpge_epu16_mask'
# |   270 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_GE)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1136:3: note: expression evaluates to '32 == 93'
# |  1133 | TEST_CONSTEXPR(_mm_cmpge_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1134 |     ((__m128i)(__v8hu){37865, 12467, 45289, 60251, 60268, 3908, 51781, 35681}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1135 |     ((__m128i)(__v8hu){30915, 32324, 1515, 24432, 15318, 33790, 22826, 64258})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1136 | ) == (__mmask8)0x5d);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1137:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){53950, 52988, 13868, 25190, 31823, 62039, 43379, 51291}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){35593, 54830, 49773, 10890, 44742, 48266, 45280, 14226}))), (int)(_MM_CMPINT_NLT), (unsigned char)-1)) == (unsigned char)169'
# |  1137 | TEST_CONSTEXPR(_mm_cmpge_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1138 |     ((__m128i)(__v8hu){53950, 52988, 13868, 25190, 31823, 62039, 43379, 51291}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1139 |     ((__m128i)(__v8hu){35593, 54830, 49773, 10890, 44742, 48266, 45280, 14226})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1140 | ) == (__mmask8)0xa9);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:270:5: note: expanded from macro '_mm_cmpge_epu16_mask'
# |   270 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_GE)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1140:3: note: expression evaluates to '61 == 169'
# |  1137 | TEST_CONSTEXPR(_mm_cmpge_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1138 |     ((__m128i)(__v8hu){53950, 52988, 13868, 25190, 31823, 62039, 43379, 51291}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1139 |     ((__m128i)(__v8hu){35593, 54830, 49773, 10890, 44742, 48266, 45280, 14226})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1140 | ) == (__mmask8)0xa9);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1143:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){53569, 10332, 63903, 42861, 45572, 36510, 50522, 36590}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){20661, 10192, 56056, 56939, 27398, 16004, 27165, 43131}))), (int)(_MM_CMPINT_NLE), (unsigned char)-1)) == (unsigned char)119'
# |  1143 | TEST_CONSTEXPR(_mm_cmpgt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1144 |     ((__m128i)(__v8hu){53569, 10332, 63903, 42861, 45572, 36510, 50522, 36590}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1145 |     ((__m128i)(__v8hu){20661, 10192, 56056, 56939, 27398, 16004, 27165, 43131})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1146 | ) == (__mmask8)0x77);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:274:5: note: expanded from macro '_mm_cmpgt_epu16_mask'
# |   274 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_GT)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1146:3: note: expression evaluates to '6 == 119'
# |  1143 | TEST_CONSTEXPR(_mm_cmpgt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1144 |     ((__m128i)(__v8hu){53569, 10332, 63903, 42861, 45572, 36510, 50522, 36590}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1145 |     ((__m128i)(__v8hu){20661, 10192, 56056, 56939, 27398, 16004, 27165, 43131})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1146 | ) == (__mmask8)0x77);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1147:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){64844, 511, 53950, 40143, 20601, 53105, 34756, 60447}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){20846, 55132, 57724, 35384, 25368, 41097, 3764, 52879}))), (int)(_MM_CMPINT_NLE), (unsigned char)-1)) == (unsigned char)233'
# |  1147 | TEST_CONSTEXPR(_mm_cmpgt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1148 |     ((__m128i)(__v8hu){64844, 511, 53950, 40143, 20601, 53105, 34756, 60447}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1149 |     ((__m128i)(__v8hu){20846, 55132, 57724, 35384, 25368, 41097, 3764, 52879})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1150 | ) == (__mmask8)0xe9);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:274:5: note: expanded from macro '_mm_cmpgt_epu16_mask'
# |   274 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_GT)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1150:3: note: expression evaluates to '170 == 233'
# |  1147 | TEST_CONSTEXPR(_mm_cmpgt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1148 |     ((__m128i)(__v8hu){64844, 511, 53950, 40143, 20601, 53105, 34756, 60447}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1149 |     ((__m128i)(__v8hu){20846, 55132, 57724, 35384, 25368, 41097, 3764, 52879})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1150 | ) == (__mmask8)0xe9);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1151:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){64715, 31454, 34266, 43085, 52260, 7304, 25587, 43911}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){25076, 3569, 11981, 11259, 63537, 32468, 23699, 9601}))), (int)(_MM_CMPINT_NLE), (unsigned char)-1)) == (unsigned char)207'
# |  1151 | TEST_CONSTEXPR(_mm_cmpgt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1152 |     ((__m128i)(__v8hu){64715, 31454, 34266, 43085, 52260, 7304, 25587, 43911}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1153 |     ((__m128i)(__v8hu){25076, 3569, 11981, 11259, 63537, 32468, 23699, 9601})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1154 | ) == (__mmask8)0xcf);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:274:5: note: expanded from macro '_mm_cmpgt_epu16_mask'
# |   274 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_GT)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1154:3: note: expression evaluates to '66 == 207'
# |  1151 | TEST_CONSTEXPR(_mm_cmpgt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1152 |     ((__m128i)(__v8hu){64715, 31454, 34266, 43085, 52260, 7304, 25587, 43911}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1153 |     ((__m128i)(__v8hu){25076, 3569, 11981, 11259, 63537, 32468, 23699, 9601})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1154 | ) == (__mmask8)0xcf);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1155:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){57954, 26888, 1708, 125, 19459, 44354, 29760, 23713}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){2188, 13828, 28514, 39528, 42286, 41311, 28270, 11063}))), (int)(_MM_CMPINT_NLE), (unsigned char)-1)) == (unsigned char)227'
# |  1155 | TEST_CONSTEXPR(_mm_cmpgt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1156 |     ((__m128i)(__v8hu){57954, 26888, 1708, 125, 19459, 44354, 29760, 23713}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1157 |     ((__m128i)(__v8hu){2188, 13828, 28514, 39528, 42286, 41311, 28270, 11063})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1158 | ) == (__mmask8)0xe3);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:274:5: note: expanded from macro '_mm_cmpgt_epu16_mask'
# |   274 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_GT)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1158:3: note: expression evaluates to '250 == 227'
# |  1155 | TEST_CONSTEXPR(_mm_cmpgt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1156 |     ((__m128i)(__v8hu){57954, 26888, 1708, 125, 19459, 44354, 29760, 23713}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1157 |     ((__m128i)(__v8hu){2188, 13828, 28514, 39528, 42286, 41311, 28270, 11063})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1158 | ) == (__mmask8)0xe3);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1159:16: error: static assertion failed due to requirement '((unsigned char)__builtin_ia32_ucmpw128_mask((__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){36435, 57842, 17322, 33066, 51263, 58618, 57550, 23212}))), (__attribute__((__vector_size__(8 * sizeof(short)))) short)(__attribute__((__vector_size__(2 * sizeof(long long)))) long long)((((__attribute__((__vector_size__(2 * sizeof(long long)))) long long)(__attribute__((__vector_size__(8 * sizeof(unsigned short)))) unsigned short){150, 39532, 62935, 34670, 57126, 9790, 21078, 3593}))), (int)(_MM_CMPINT_NLE), (unsigned char)-1)) == (unsigned char)227'
# |  1159 | TEST_CONSTEXPR(_mm_cmpgt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
# |  1160 |     ((__m128i)(__v8hu){36435, 57842, 17322, 33066, 51263, 58618, 57550, 23212}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1161 |     ((__m128i)(__v8hu){150, 39532, 62935, 34670, 57126, 9790, 21078, 3593})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1162 | ) == (__mmask8)0xe3);
# |       | ~~~~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:274:5: note: expanded from macro '_mm_cmpgt_epu16_mask'
# |   274 |     _mm_cmp_epu16_mask((A), (B), _MM_CMPINT_GT)
# |       |     ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/build/lib/clang/22/include/avx512vlbwintrin.h:86:3: note: expanded from macro '_mm_cmp_epu16_mask'
# |    86 |   ((__mmask8)__builtin_ia32_ucmpw128_mask((__v8hi)(__m128i)(a), \
# |       |   ^
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c:1162:3: note: expression evaluates to '134 == 227'
# |  1159 | TEST_CONSTEXPR(_mm_cmpgt_epu16_mask(
# |       | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1160 |     ((__m128i)(__v8hu){36435, 57842, 17322, 33066, 51263, 58618, 57550, 23212}),
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1161 |     ((__m128i)(__v8hu){150, 39532, 62935, 34670, 57126, 9790, 21078, 3593})
# |       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |  1162 | ) == (__mmask8)0xe3);
# |       | ~~^~~~~~~~~~~~~~~~~~
# | /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/builtin_test_helpers.h:298:43: note: expanded from macro 'TEST_CONSTEXPR'
# |   298 | #define TEST_CONSTEXPR(...) static_assert(__VA_ARGS__)
# |       |                                           ^~~~~~~~~~~
# | 20 errors generated.
# `-----------------------------
# error: command failed with exit status: 1
# executed command: /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/FileCheck /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c
# .---command stderr------------
# | FileCheck error: '<stdin>' is empty.
# | FileCheck command line:  /home/gha/actions-runner/_work/llvm-project/llvm-project/build/bin/FileCheck /home/gha/actions-runner/_work/llvm-project/llvm-project/clang/test/CodeGen/X86/avx512vlbw-builtins.c
# `-----------------------------
# error: command failed with exit status: 2

--

If these failures are unrelated to your changes (for example tests are broken or flaky at HEAD), please open an issue at https://github.com/llvm/llvm-project/issues and add the infrastructure label.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backend:X86 clang Clang issues not falling into any other category

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants