aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ipa/iinline-3.C
blob: 3daee9a868161a5ed81d4a841bafb51fc77f5d9d (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
59
60
61
62
63
64
/* Verify that we do not indirect-inline using member pointer
   parameters which have been modified.  */
/* { dg-do run } */
/* { dg-options "-O3 -fno-early-inlining"  } */
/* { dg-add-options bind_pic_locally } */

extern "C" void abort (void);

class String
{
private:
  const char *data;

public:
  String (const char *d) : data(d)
  {}

  int funcOne (int stuff) const;
  int funcTwo (int stuff) const;
};


int String::funcOne (int stuff) const
{
  return stuff + 1;
}

int String::funcTwo (int stuff) const
{
  return stuff + 100;
}

int (String::* gmp)(int stuff) const = &String::funcTwo;

int docalling_1 (int (String::* f)(int stuff) const)
{
  String S ("muhehehe");

  return (S.*f)(4);
}

int docalling (int a, int (String::* f)(int stuff) const)
{
  if (a < 200)
    f = gmp;

  return docalling_1 (f);
}

int __attribute__ ((noinline,noclone)) get_input (void)
{
  return 1;
}

int main (int argc, char *argv[])
{
  int i = 0;
  while (i < 10)
    i += docalling (get_input (), &String::funcOne);

  if (i != 104)
    abort();
  return 0;
}