mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-14 01:50:56 +00:00
(make_method_call): Added comment about looking into a problem with
returning floats. I need to get back to this later. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@522 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1cdc3146c0
commit
f717c58dbc
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
/* Implementation of functions for dissecting/making method calls
|
/* Implementation of functions for dissecting/making method calls
|
||||||
Copyright (C) 1994 Free Software Foundation, Inc.
|
Copyright (C) 1994, 1995 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Date: Oct 1994
|
Date: Oct 1994
|
||||||
|
@ -394,6 +394,10 @@ make_method_call(const char *forward_type,
|
||||||
}
|
}
|
||||||
else if (*tmptype == _C_FLT || *tmptype == _C_DBL)
|
else if (*tmptype == _C_FLT || *tmptype == _C_DBL)
|
||||||
{
|
{
|
||||||
|
/* xxx For floats on MIPS, it seems I should add 4 more in
|
||||||
|
addition to the FLT_AND_DBL_RETFRAME_OFFSET while working
|
||||||
|
on guileobjc.
|
||||||
|
Look into this for Distributed Objects. */
|
||||||
(*fe)(-1, ((char*)retframe) + FLT_AND_DBL_RETFRAME_OFFSET,
|
(*fe)(-1, ((char*)retframe) + FLT_AND_DBL_RETFRAME_OFFSET,
|
||||||
tmptype, flags);
|
tmptype, flags);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue