Commit 5f36e00f by Jason Merrill

re PR c++/59886 (C++ array init optimization results in RANGE_EXPRs in assignments)

	PR c++/59886
	PR c++/59659
	* g++.dg/opt/value-init2.C: Remove.

From-SVN: r207052
parent 114bf260
// PR c++/59659
// { dg-options "-fdump-tree-gimple" }
// { dg-final { scan-tree-dump-times "S::S" 1 "gimple" } }
// { dg-final { cleanup-tree-dump "gimple" } }
struct S { S (); S (int i); int i; };
struct A { S s[100]; };
void
foo ()
{
A a = {{}};
}
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