1 /* PR target/81532 */
2 /* { dg-do compile { target int128 } } */
3 /* { dg-options "-O2 -mavx512dq -mavx512vl -mno-avx512bw" } */
4
5 typedef unsigned __int128 V __attribute__ ((vector_size (64)));
6
7 V
8 foo (V c)
9 {
10 c >>= 0 != c;
11 return c;
12 }