aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr65161.c
blob: 3118e94587a4f2ef2479be0f9a7f78de98ad0c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-O3 -fselective-scheduling2 -mtune=slm" } */

extern char data_ch[];

short
foo ()
{
  int i;
  short shortsum = 0;
  for (i = 0; i < 16; i++)
    shortsum += data_ch[i];
  return shortsum;
}