blob: 675a60c341289b6608b04a4f45bb79cb571d141f [file] [log] [blame]
/* { dg-do compile } */
typedef unsigned char __attribute__((__vector_size__ (4))) V;
extern void bar (V v);
void
foo (char c)
{
bar (c <= (V) 127);
}