aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/new27.C
blob: a6271c930d92768b891852a74080d58f22c14183 (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
// PR c++/34862
// { dg-do run }
// { dg-options "-O2" }

typedef __SIZE_TYPE__ size_t;
extern "C" void abort ();

struct T
{
  void *operator new (size_t, char *&);
  T () { i[0] = 1; i[1] = 2; }
  int i[2];
};

void *
T::operator new (size_t size, char *&p)
{
  void *o = (void *) p;
  p += size;
  return o;
}

T *
f (char *&x)
{
  return new (x) T ();
}

char buf[10 * sizeof (T)] __attribute__((aligned (__alignof (T))));

int
main ()
{
  char *p = buf;
  T *t = f (p);
  if (p != buf + sizeof (T))
    abort ();
  if (t->i[0] != 1 || t->i[1] != 2)
    abort ();
}