]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr100292.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr100292.c
CommitLineData
f7ee6a1e
RB
1/* { dg-do compile } */
2
3typedef unsigned char __attribute__((__vector_size__ (4))) V;
4
5extern void bar (V v);
6
7void
8foo (char c)
9{
10 bar (c <= (V) 127);
11}