Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
g++.target
/
i386
/
pr102295.C
blob: 09efc3c8a86ff162c44c01ca29aba5bc8ba79a0d [
file
] [
log
] [
blame
]
// PR c++/102295
// { dg-do compile { target *-*-linux* } }
// { dg-options "-Wno-pedantic" }
struct
S
{
int
a
;
int
b
[];
}
S
;
struct
S s
=
{
1
,
{
2
,
3
}
};
/* { dg-final { scan-assembler ".size\[\t \]*s, 12" } } */