mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Merge from 0.6.5
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6040 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5a2deec1e4
commit
81b7455bda
36 changed files with 1074 additions and 479 deletions
|
@ -291,7 +291,6 @@ mframe_next_arg(const char *typePtr, NSArgumentInfo *info)
|
|||
info->align = __alignof__(unsigned long);
|
||||
break;
|
||||
|
||||
#ifdef _C_LNG_LNG
|
||||
case _C_LNG_LNG:
|
||||
info->size = sizeof(long long);
|
||||
info->align = __alignof__(long long);
|
||||
|
@ -302,7 +301,6 @@ mframe_next_arg(const char *typePtr, NSArgumentInfo *info)
|
|||
info->align = __alignof__(unsigned long long);
|
||||
break;
|
||||
|
||||
#endif
|
||||
case _C_FLT:
|
||||
info->size = sizeof(float);
|
||||
info->align = __alignof__(float);
|
||||
|
@ -1653,7 +1651,6 @@ mframe_decode_return (const char *type, void* buffer, void* retframe)
|
|||
break;
|
||||
}
|
||||
|
||||
#ifdef _C_LNG_LNG
|
||||
case _C_LNG_LNG:
|
||||
case _C_ULNG_LNG:
|
||||
{
|
||||
|
@ -1664,7 +1661,6 @@ mframe_decode_return (const char *type, void* buffer, void* retframe)
|
|||
*(unsigned long long*)buffer = retframe_longlong(retframe);
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
|
||||
case _C_FLT:
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue