From e0392629a122213a08789dc5db2679902a16a3ae Mon Sep 17 00:00:00 2001 From: davem Date: Wed, 7 Oct 1998 02:21:54 +0000 Subject: * objc/sarray.h: Make boffset be an unsigned long when sparc so it works out on 64-bit systems. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22881 138bc75d-0d04-0410-961f-82ee72b054a4 --- libobjc/objc/sarray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libobjc/objc') diff --git a/libobjc/objc/sarray.h b/libobjc/objc/sarray.h index 74fa38652ba..17da2720364 100644 --- a/libobjc/objc/sarray.h +++ b/libobjc/objc/sarray.h @@ -92,7 +92,7 @@ struct soffset { unsigned int ioffset : SIZET_BITS/4; #else /* OBJC_SPARSE2 */ #ifdef __sparc__ - unsigned int boffset : (SIZET_BITS - 2) - BUCKET_BITS; + unsigned long boffset : (SIZET_BITS - 2) - BUCKET_BITS; unsigned int eoffset : BUCKET_BITS; unsigned int unused : 2; #else -- cgit v1.2.1