blob: 6c1cd72cc77ab2f27c4a6fda42008d7a622ac12a [file] [log] [blame]
/* Related to PR c++/38410.
We shouldn't write out a static variable for an all-zero aggregate
initializer. The variable named C.0 was created by
gimplify_init_constructor. */
/* { dg-final { scan-assembler-not "C\\.0" } } */
int main()
{
int a[] = { 0,0 };
}