As the subject says, gcc barks with e.g.:
gnunode.cpp: In method `void MGnuNode::Send_Ping (int)':
gnunode.cpp:1998: Internal compiler error in
emit_move_insn, at expr.c:
2577
Having a look at the line, one reads:
GUID Guid = GUID_NULL;
And here's the solution for the problem. Rerwrite the
line to:
GUID Guid;
Guid = GUID_NULL;
I know, everyone recommends not to use gcc 2.96, but
Could you please fix this, (multiple) occurences are in:
- gnunode.cpp
- gnudirector.cpp
Logged In: YES
user_id=643728
As you see, it's an *internal compiler error*. Your bug
report should go to gcc-bugs@gnu.org (IIRC) but no one shall
use gcc 2.96. Either, stick to 2.95.{3,4}
or better use 3.2.2.
This bug report should be closed.