Tweaks for the 64-bit compiler.

This commit is contained in:
David E. O'Brien 2002-06-21 22:53:03 +00:00
parent 2d40081d1f
commit d9adce40ed
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98597

View File

@ -106,13 +106,13 @@ Boston, MA 02111-1307, USA. */
c-common.c, and config/<arch>/<arch>.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)
#undef TARGET_VERSION
#define TARGET_VERSION fprintf (stderr, " (i386 FreeBSD/ELF)");