Snapshot gcc-4.9-20150617 is now available on
ftp://gcc.gnu.org/pub/gcc/snapshots/4.9-20150617/
and on various mirrors, see http://gcc.gnu.org/mirrors.html for details.
This snapshot has been generated from the GCC 4.9 SVN branch
with the following options: svn://gcc.gnu.org/svn/gcc/branches
See bug 63944 and DR#413 regarding such cases.
--
Joseph S. Myers
jos...@codesourcery.com
On 17 June 2015 at 09:16, Krzysztof Hałasa wrote:
> Hi,
>
> I wonder if the following is a bug:
>
> #include
>
> int main(void)
> {
> struct str {
> struct a {
> int a1, a2;
> } a;
> };
>
> struct str src = {.a = {.a1
The GCC 4.9 branch is now frozen for preparing of a release candidate for
GCC 4.9.3. All changes to the branch require release manager approval
from now on until 4.9.3 is released.
I'll announce the GCC 4.9.3 release candidate once it is ready.
The first release candidate for the next release from the GCC 4.9
branch, GCC 4.9.3, is available from
ftp://gcc.gnu.org/pub/gcc/snapshots/4.9.3-RC-20150617/
and shortly its mirrors.
I have so far bootstrapped and tested the release candidate
on x86_64-unknown-linux-gnu. Please test it and
Hi,
I wonder if the following is a bug:
#include
int main(void)
{
struct str {
struct a {
int a1, a2;
} a;
};
struct str src = {.a = {.a1 = 1, .a2 = 2}};
struct str dest = {.a = src.a, .a.a2 = 3};