]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr49496.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr49496.c
CommitLineData
4fb489e7
JJ
1/* PR debug/49496 */
2/* { dg-do compile } */
3/* { dg-options "-O3 -fcompare-debug" } */
4
5unsigned short u[8], s1[8], s2[8];
6
7void bar (unsigned short *);
8
9void
10foo (void)
11{
12 unsigned short e[8];
13 int i;
14 for (i = 0; i < 8; i++)
15 {
16 int tmp = s1[i] * s2[i];
17 e[i] = (tmp & 0xffff0000) >> 16;
18 }
19 bar (e);
20}