summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/avx512dq-pr81532.c
blob: 39632a2c482287cb5426683824220e1b11e4448c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR target/81532 */
/* { dg-do compile { target int128 } } */
/* { dg-options "-O2 -mavx512dq -mavx512vl -mno-avx512bw" } */

typedef unsigned __int128 V __attribute__ ((vector_size (64)));

V
foo (V c)
{
  c >>= 0 != c;
  return c;
}