]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/vector-shift.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / vector-shift.c
CommitLineData
a5e0cd1d
MG
1/* { dg-do compile } */
2/* { dg-options "-fdump-tree-original" } */
3
4typedef unsigned vec __attribute__ ((vector_size (4 * sizeof (int))));
5
6void
7f (vec *x)
8{
9 *x = (*x << 4) << 3;
10}
11
12/* { dg-final { scan-tree-dump "<< 7" "original" } } */