From 269d917555dafbf373d36598156b5b4b3695ec3a Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Wed, 29 Jun 1994 19:44:07 +0000 Subject: [PATCH] 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 --- gcc/config/sparc/sp64-elf.h | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/gcc/config/sparc/sp64-elf.h b/gcc/config/sparc/sp64-elf.h index 487876f4901..681b1b54418 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 -- 2.30.2