Re: [GSOC] LTO dump tool project

2018-06-17 Thread Hrishikesh Kulkarni
Hi, I am trying to isolate the dump tool into real lto-dump tool. I have started with the copy&paste of lto.c into lto-dump.c and done the changes to Make-lang.in and config-lang.in suggested by Martin (patch attached). However when I try to build, I get the following error: In file included from

gcc-9-20180617 is now available

2018-06-17 Thread gccadmin
Snapshot gcc-9-20180617 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/9-20180617/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/trunk revision

Apparent deeply-nested missing error bug with gcc 7.3

2018-06-17 Thread Soul Studios
In the following case GCC correctly throws an error since simple_return_value is returning a pointer, not a reference: "#include int & simple_return_value(int &temp) { return &temp; } int main() { int temp = 42; return simple_return_value(temp); }" However in deepl