|
From: Ian P. <piu...@us...> - 2003-09-16 07:56:02
|
Update of /cvsroot/squeak/squeak/platforms/unix/vm In directory sc8-pr-cvs1:/tmp/cvs-serv25575 Modified Files: sqGnu.h Log Message: Include foo-> prefix iff SQ_USE_GLOBAL_STRUCT. Index: sqGnu.h =================================================================== RCS file: /cvsroot/squeak/squeak/platforms/unix/vm/sqGnu.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** sqGnu.h 3 Sep 2003 18:06:53 -0000 1.7 --- sqGnu.h 16 Sep 2003 07:55:58 -0000 1.8 *************** *** 37,41 **** /* Author: Ian...@in... * ! * Last edited: 2003-09-03 00:34:59 by piumarta on emilia.inria.fr * * NOTES: --- 37,41 ---- /* Author: Ian...@in... * ! * Last edited: 2003-09-10 06:01:29 by piumarta on emilia.inria.fr * * NOTES: *************** *** 55,59 **** #endif ! #define PRIM_DISPATCH goto *jumpTable[foo->primitiveIndex] #define JUMP_TABLE \ --- 55,63 ---- #endif ! #if defined(SQ_USE_GLOBAL_STRUCT) ! # define PRIM_DISPATCH goto *jumpTable[foo->primitiveIndex] ! #else ! # define PRIM_DISPATCH goto *jumpTable[primitiveIndex] ! #endif #define JUMP_TABLE \ |