Commit 07181a20 by David S. Miller Committed by David S. Miller

sarray.h: Make boffset be an unsigned long when sparc so it works out on 64-bit systems.

	* objc/sarray.h: Make boffset be an unsigned long when sparc so it
	works out on 64-bit systems.

From-SVN: r22881
parent 959eb758
1998-10-07 David S. Miller <davem@pierdol.cobaltmicro.com>
* objc/sarray.h: Make boffset be an unsigned long when sparc so it
works out on 64-bit systems.
Tue Oct 6 20:32:06 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
* Makefile.in (INCLUDES): Make it multilib-friendly
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment