mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
tweaks for 64bit sparc
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34109 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
70f63cc91a
commit
dd6590b767
2 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
* Source/NSNumber.m: Fix alignment error when encoding/decoding ...
|
||||
buffer must be aligned so that any datatype can go in it.
|
||||
* Source/cifframe.m: Fix buffer size for small scalar values on
|
||||
64bit sparc
|
||||
|
||||
2011-11-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -43,6 +43,8 @@
|
|||
|
||||
#if defined(ALPHA) || (defined(MIPS) && (_MIPS_SIM == _ABIN32))
|
||||
typedef long long smallret_t;
|
||||
#elif defined(__sparc(
|
||||
typedef NSInteger smallret_t;
|
||||
#else
|
||||
typedef int smallret_t;
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue