This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Internel Compiler error


I have a PowerMac 7600/132 running pmac-linux. The kernel is the latest
2.1.24. I have egcs-1.0-2e. I get this error:

---------- MLPVertexArray.o ----------
/bin/sh /tmp/files/ml-0.5.3/src/libtool --quiet --mode=compile g++ -O2
-Wall -DNDEBUG -DNWARN -fomit-frame-pointer -fexpensive-optimizations
-ffast-math -funroll-loops -D_REENTRANT   -I..  -c MLPVertexArray.C
MLPVertexArray.C: In method `bool MLPVertexArray::_serialRead(class
XDRFile *)':
MLPVertexArray.C:64: Internal compiler error.
MLPVertexArray.C:64: Please submit a full bug report to
`egcs-bugs@cygnus.com'.
make[1]: ***
[../../lib/powerpc-unknown-linux-gnu/opt/libmoon_kernel/MLPVertexArray.o]
Error 1
make[1]: Leaving directory `/tmp/files/ml-0.5.3/src/kernel'
make: *** [subdirs] Error 2

----------------------
The surrounding code was:

------------------------------
boolean MLPVertexArray::_serialRead( XDRFile* file )
{
  if( file == 0 )
    return false;

  int _length= 0;
  if( ! file->getInteger(&_length) )
    return false;

  array.realloc(_length);

  for( int i= 1; i <= _length; ++i )
    {
    MLVertex& v= array[i];

    if( ! v.serialRead(file) )
      return false;
    }

  return true;
}
--------------------------------------------

I'm a user, not a coder of this project, so I have no idea what the code
is doing.

The full source can be found at
<ftp://rufus.w3.org/pub/moonlight/ml-0.5.3.tar.bz2>

Thanks,


--Eric Guenterberg



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]