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:
Richard Frith-MacDonald 2011-11-02 16:39:39 +00:00
parent 70f63cc91a
commit dd6590b767
2 changed files with 4 additions and 0 deletions

View file

@ -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>

View file

@ -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