aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/restrict-4.c
blob: 7bcdcdd053a86e43b1b3da643c63172f3b5187ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

int
foo (int *x, int y)
{
  int *__restrict p1 = x;
  int *__restrict p2 = x + 32;
  p1[y] = 1;
  p2[4] = 2;
  return p1[y];
}

int
bar (int *x, int y)
{
  int *__restrict p1 = x;
  int *p3 = x + 32;
  int *__restrict p2 = p3;
  p1[y] = 1;
  p2[4] = 2;
  return p1[y];
}

/* { dg-final { scan-tree-dump-times "return 1;" 2 "optimized" { xfail *-*-* } } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */