diff options
author | Doug Evans <dje@gnu.org> | 1994-06-29 19:44:07 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1994-06-29 19:44:07 +0000 |
commit | 269d917555dafbf373d36598156b5b4b3695ec3a (patch) | |
tree | 944c6860153498b824d4716fee00894e782b3c4b | |
parent | 857458c409cd870d092ac3b9a37df21da4fd554e (diff) | |
download | gcc-269d917555dafbf373d36598156b5b4b3695ec3a.zip gcc-269d917555dafbf373d36598156b5b4b3695ec3a.tar.gz gcc-269d917555dafbf373d36598156b5b4b3695ec3a.tar.bz2 |
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
-rw-r--r-- | gcc/config/sparc/sp64-elf.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gcc/config/sparc/sp64-elf.h b/gcc/config/sparc/sp64-elf.h index 487876f..681b1b5 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 |