From: Doug Evans Date: Wed, 29 Jun 1994 19:44:07 +0000 (+0000) Subject: sp64-elf: (PTRDIFF_TYPE): Remove dependence on POINTER_SIZE. X-Git-Tag: misc/cutover-egcs-0~6341 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=269d917555dafbf373d36598156b5b4b3695ec3a;p=thirdparty%2Fgcc.git sp64-elf: (PTRDIFF_TYPE): Remove dependence on POINTER_SIZE. * sparc/sp64-elf: (PTRDIFF_TYPE): Remove dependence on POINTER_SIZE. (SIZE_TYPE): Likewise. From-SVN: r7602 --- diff --git a/gcc/config/sparc/sp64-elf.h b/gcc/config/sparc/sp64-elf.h index 487876f4901b..681b1b544182 100644 --- a/gcc/config/sparc/sp64-elf.h +++ b/gcc/config/sparc/sp64-elf.h @@ -84,16 +84,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* ??? It might be possible to eventually get svr4.h to do the right thing. */ #undef PTRDIFF_TYPE -#define PTRDIFF_TYPE \ - (POINTER_SIZE == 64 ? "long long int" \ - : POINTER_SIZE == 32 && LONG_TYPE_SIZE == 32 ? "long int" \ - : 0 /*abort*/) +#define PTRDIFF_TYPE "long long int" #undef SIZE_TYPE -#define SIZE_TYPE \ - (POINTER_SIZE == 64 ? "long long unsigned int" \ - : POINTER_SIZE == 32 && LONG_TYPE_SIZE == 32 ? "long unsigned int" \ - : 0 /*abort*/) +#define SIZE_TYPE "long long unsigned int" /* ??? This should be 32 bits for v9 but what can we do? */ #undef WCHAR_TYPE