aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/pr57175.C
blob: d6801a735294e221f1eb129bed120fbf3442401c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile { target c++11 } } */

extern "C" void do_not_remove ();

struct A
{
  A () { }
  A (A const&) { do_not_remove (); }
};

A
f ()
{
  alignas (2 * alignof (A)) A x;
  return x;
}

/* { dg-final { scan-assembler "do_not_remove" } } */