aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ipa/ipcp-cstagg-3.c
blob: 917f1389f3efa6a0dfa25e229230457fe034c82e (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* { dg-do compile } */
/* { dg-options "-O3 -fdump-ipa-cp-details" } */

#define N 4

typedef int (* const A[N])(int);

extern const A *ga;

static int  __attribute__((noinline))
bar (const A *f, int x)
{
  x = (*f)[2](x);
  x = (*f)[2](x);
  x = (*f)[2](x);
  ga = f;
  return x;
}

static int
zero (int x)
{
  return 0;
}

static int
addone (int x)
{
  return x + 1;
}

static int
sq (int x)
{
  return x * x;
}

static int
cube (int x)
{
  return x * x * x;
}

static const A a = {zero, addone, sq, cube};

int
g (int x)
{
  return bar (&a, x);
}

int
obfuscate (int x)
{
  return bar ((A *) 0, x);
}

/* { dg-final { scan-ipa-dump-times "Discovered an indirect call to a known target" 3 "cp" } } */