view gcc/testsuite/gcc.target/i386/avx512bw-pr94438.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

/* PR target/94438 */
/* { dg-do compile { target int128 } } */
/* { dg-options "-mavx512bw" } */

typedef __attribute__ ((__vector_size__ (4 * sizeof (__int128)))) __int128 V;
void bar (V);

void
foo (V w)
{
  V v = 0 <= (0 >= w);
  bar (v);
}