freebsd.h (SIZE_TYPE): Support TARGET_64BIT.
2003-09-03 David O'Brien <obrien@FreeBSD.org> optimization/11980 * config/i386/freebsd.h (SIZE_TYPE): Support TARGET_64BIT. (PTRDIFF_TYPE): Likewise. (WCHAR_TYPE_SIZE): Likewise. From-SVN: r71049
This commit is contained in:
parent
61f71b3447
commit
04b379ba09
@ -1,3 +1,10 @@
|
||||
2003-09-03 David O'Brien <obrien@FreeBSD.org>
|
||||
|
||||
optimization/11980
|
||||
* config/i386/freebsd.h (SIZE_TYPE): Support TARGET_64BIT.
|
||||
(PTRDIFF_TYPE): Likewise.
|
||||
(WCHAR_TYPE_SIZE): Likewise.
|
||||
|
||||
2003-09-03 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* targhooks.c: New file.
|
||||
|
@ -50,13 +50,13 @@ Boston, MA 02111-1307, USA. */
|
||||
/* Make gcc agree with <machine/ansi.h>. */
|
||||
|
||||
#undef SIZE_TYPE
|
||||
#define SIZE_TYPE "unsigned int"
|
||||
#define SIZE_TYPE (TARGET_64BIT ? "long unsigned int" : "unsigned int")
|
||||
|
||||
#undef PTRDIFF_TYPE
|
||||
#define PTRDIFF_TYPE "int"
|
||||
#define PTRDIFF_TYPE (TARGET_64BIT ? "long int" : "int")
|
||||
|
||||
#undef WCHAR_TYPE_SIZE
|
||||
#define WCHAR_TYPE_SIZE BITS_PER_WORD
|
||||
#define WCHAR_TYPE_SIZE (TARGET_64BIT ? 32 : BITS_PER_WORD)
|
||||
|
||||
/* Provide a STARTFILE_SPEC appropriate for FreeBSD. Here we add
|
||||
the magical crtbegin.o file (see crtstuff.c) which provides part
|
||||
|
Loading…
x
Reference in New Issue
Block a user