From da7889fac0cacf2710b11bf6ddb5c674897a214f Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 5 Mar 1999 10:17:04 +0000 Subject: [PATCH] Minor addition to help. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3858 72102866-910b-0410-8b05-ffd578937521 --- Source/mframe/README | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Source/mframe/README b/Source/mframe/README index 0427ed0a7..44ee2012a 100644 --- a/Source/mframe/README +++ b/Source/mframe/README @@ -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.