aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr45913.c
blob: 46b9c66f8cd8e6aefe5a82687616916b9de6d76b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* PR target/45913 */
/* { dg-do compile } */
/* { dg-options "-O2 -fselective-scheduling2 -fsel-sched-pipelining -fsel-sched-pipelining-outer-loops" } */

extern void bar (int, int);

int ss[128];

void
foo (int i, int j, int k, int *p1, int *p2)
{
  int s[128];
  __builtin_memcpy (s, ss, sizeof s);

  while (i--)
    {
      int a = s[i];
      while (j--)
	bar (k, p2[a]);
      j = s[i] & 0xFF;
      bar (p1[a], k);
    }
}