summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ipa/ipa-sra-6.c
blob: 60382949175db49ce874804fa5866d19796029a5 (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
/* { dg-do compile } */
/* { dg-options "-O2 -fipa-sra -fdump-tree-eipa_sra-slim"  } */

struct bovid
{
  float a;
  int b;
  struct bovid *next;
};

static int
__attribute__((noinline))
foo (struct bovid *cow, int i)
{
  i++;
  if (cow->next)
    foo (cow->next, i);
  return i;
}

int main (int argc, char *argv[])
{
  struct bovid cow;

  cow.a = 7.4;
  cow.b = 6;
  cow.next = (struct bovid *) 0;

  return foo (&cow, 0);
}

/* { dg-final { scan-tree-dump-times "foo " 1 "eipa_sra"  } } */
/* { dg-final { cleanup-tree-dump "eipa_sra" } } */