view gcc/testsuite/g++.dg/opt/pr19108.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// PR tree-optimization/19108
// This used to abort due to not handing RANGE_EXPR in SRA.

// { dg-do compile }
// { dg-options "-O" }

struct A
{
    int i[6];
    A () : i() {}
};

struct B
{
    A a;
    B(const A& x) : a(x) {}
};

B b=A();