aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr100292.c
blob: 147c9324d81bac88e50ed4d925026052c0b7a62b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-require-effective-target int32 } */

typedef unsigned char __attribute__((__vector_size__ (4))) V;

extern void bar (V v);

void
foo (char c)
{
  bar (c <= (V) 127);
}