Commit 916de033 by Jason Merrill

* g++.dg/cpp1z/aligned-new7.C: Fix for small MAX_STACK_ALIGNMENT targets.

From-SVN: r241375
parent 28df8730
......@@ -8,8 +8,9 @@ struct X
alignas(2*__STDCPP_DEFAULT_NEW_ALIGNMENT__) int i;
};
alignas(alignof(X)) char buf[sizeof(X)];
int main()
{
alignas(alignof(X)) char buf[sizeof(X)];
::new((void*)buf) X{1};
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment