Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr65161.c
blob3118e94587a4f2ef2479be0f9a7f78de98ad0c4b
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -fselective-scheduling2 -mtune=slm" } */
4 extern char data_ch[];
6 short
7 foo ()
9 int i;
10 short shortsum = 0;
11 for (i = 0; i < 16; i++)
12 shortsum += data_ch[i];
13 return shortsum;