aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr108237.c
blob: 52b7f9d177f3a8af1588b564698d760943d7e181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR middle-end/108237 */

typedef unsigned char __attribute__((__vector_size__ (1))) U;
typedef unsigned long long __attribute__((__vector_size__ (16))) V;

U u;
V v;

V
foo (void)
{
  V w = v != ((unsigned char) ((unsigned char) u == u) & v);
  return w;
}