aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/pr19108.C
blob: 206a2bc382bf5c0281a1fdf5877f27654a384f6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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();