aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/vector-shift-1.c
blob: 142ea56d5bb06e490cb2913849f567175788ef31 (plain)
1
2
3
4
5
6
7
8
typedef unsigned char __attribute__((__vector_size__ (1))) U;

U
foo (U u)
{
  u = u == u;
  return (~(u >> 255));
}