Minor addition to help.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3858 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-03-05 10:17:04 +00:00
parent b9b162c14b
commit feea5bcc07

View file

@ -29,8 +29,8 @@
directly or by way of libFoundation.
The sections of code (and comments) to do with the MFRAME_ARG_ENCODING()
macro for sparc, hppa and powerpc were derived from libFoundation (for
which, much thanks) avoiding the need to extract the relevent details
macro for sparc, hppa and powerpc were derived in part from libFoundation
(for which, much thanks) avoiding the need to extract the relevent details
directly from the gcc source in these cases. The originals from which
these fragments came the additional credit/copyright -
@ -89,7 +89,8 @@ MFRAME_ARGS_SIZE
This must be set to the value computed by the apply_args_size()
function in expr.c in the gcc source. It is the size of the
area of memory allocated in which to pass arguments to a function.
If you can't figure out how to determine this - try using a
If you can't figure out how to determine this (hack expr.c to print
the result of the function the first time it's called) - try using a
value like 128 - which will probably be far larger than required
(and therefore somewhat inefficient) but will most likely work.
@ -97,7 +98,8 @@ MFRAME_RESULT_SIZE
This must be set to the value computed by the apply_result_size()
function in expr.c in the gcc source. It is the size of the area
of memory allocated in which to return a value from a function.
If you can't figure out how to determine this - try using a
If you can't figure out how to determine this (hack expr.c to print
the result of the function the first time it's called) - try using a
value like 128 - which will probably be far larger than required
(and therefore somewhat inefficient) but will most likely work.