aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/pr17598.c
blob: ac912a2b19b4f2a827ff94328096cebb77c86b42 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* { dg-do compile } */
/* { dg-options "-fdump-tree-gimple" } */

struct f
{
  int i;
  int j;
};

struct g
{
  int i;
  struct f j;
  struct f *k;
};

int foo(struct f *x, struct f *y)
{
  return &x->j == &y->j; /* x == y */
}

struct f y;
int bar(struct f *x)
{
  return &x->j == &y.j; /* x == &y */
}

struct g yy;
int foobar(struct g *x)
{
  return &x->j.i == &yy.j.i; /* x == &yy */
}
int foobar2(struct g *x)
{
  return &x->k->i == &yy.k->i; /* x->k == yy.k */
}

/* { dg-final { scan-tree-dump-times "x == y" 1 "gimple" } } */
/* { dg-final { scan-tree-dump-times "x == &y" 2 "gimple" } } */
/* { dg-final { scan-tree-dump "x->k" "gimple" } } */
/* { dg-final { scan-tree-dump "yy.k" "gimple" } } */
/* { dg-final { cleanup-tree-dump "gimple" } } */