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]
Other format: [Raw text]

Re: bootstrap failure on mainline for mmix


On Thu, 25 Apr 2002, Andreas Jaeger wrote:
> Crosscompiling from i686-linux-gnu to mmix I get a bootstrap failure
> with current GCC CVS mainline,

The SEGV is function_attribute_inlinable_p trying to dereference
a NULL pointer:
=>    for (i = 0; targetm.attribute_table[i].name != NULL; i++)

MMIX (and CRIS, which fails much earlier in libgcc compiling
_divsi3.i) don't have machine attributes, so they don't override
the target-def.h: #define TARGET_ATTRIBUTE_TABLE NULL so
targetm.attribute_table is still NULL.  I predict failures for
mn10300 and mips too.

It's likely due to some attribute change, in particular the
large ChangeLog entry dated:
2002-04-24  Neil Booth  <neil@daikokuya.demon.co.uk>

Neil, can you please have a look?

brgds, H-P


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