This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: -m32 only ia32 compiler?
On Fri, May 04, 2001 at 01:04:46PM +0200, Jan Hubicka wrote:
> Yes, I plan to create ia32 only configuration too. Everything is handled by TARGET_64BIT
> macro, so making 32bit only compiler should be easy.
Not everything actually, e.g. the MAX_* constants don't depend on it (well,
the actuall should not, the should depend on whether I386_BI_ARCH (or
whatever) is defined or not).
This is what sparc.h does:
#ifdef SPARC_BI_ARCH
#define MAX_LONG_TYPE_SIZE 64
#endif
> I will give it priority now, since performance penalty due to HOST_WIDE_INT is high
> now, so I will try to send patch till end of weekend.
Thanks.
Jakub