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
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
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