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
This commit is contained in:
Jason Merrill 2014-01-24 12:09:07 -05:00
parent 114bf2605d
commit 5f36e00fd9

View file

@ -1,13 +0,0 @@
// 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 = {{}};
}