aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr100239.c
blob: 1ade810c52b0550a2c3ca2c5ef9b694912eb561e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR tree-optimization/100239 */
/* { dg-do compile } */
/* { dg-options "-O0" } */

typedef short __attribute__((__vector_size__ (8 * sizeof (short)))) V;
V v, w;

void
foo (void)
{
  w = __builtin_shuffle (v != v, 0 < (V) {}, (V) {192} >> 5);
}