|
From: John M M. <jo...@us...> - 2002-05-04 17:40:33
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm/specialChangeSets In directory usw-pr-cvs1:/tmp/cvs-serv25923/squeak/platforms/Mac OS/vm/specialChangeSets Modified Files: Globalstructure-JMM.1.cs Log Message: 3.2.7b3 - Missed a change on distribution. Want to avoid putting arrays into the global structure because it produces poor code on the powerpc. Index: Globalstructure-JMM.1.cs =================================================================== RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/specialChangeSets/Globalstructure-JMM.1.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Globalstructure-JMM.1.cs 27 Apr 2002 19:08:32 -0000 1.1 --- Globalstructure-JMM.1.cs 4 May 2002 17:40:28 -0000 1.2 *************** *** 1,3 **** ! 'From Squeak3.2gamma of 15 January 2002 [latest update: #4823] on 17 April 2002 at 12:00:32 pm'! "Change Set: Globalstructure-JMM Date: 5 April 2002 --- 1,3 ---- ! 'From Squeak3.2gamma of 15 January 2002 [latest update: #4823] on 4 May 2002 at 10:31:32 am'! "Change Set: Globalstructure-JMM Date: 5 April 2002 *************** *** 102,106 **** ^globalVariables! ! ! !CCodeGeneratorGlobalStructure methodsFor: 'C code generator' stamp: 'JMM 4/16/2002 22:58'! placeInStructure: var "See if we should put this array into a structure --- 102,106 ---- ^globalVariables! ! ! !CCodeGeneratorGlobalStructure methodsFor: 'C code generator' stamp: 'JMM 4/17/2002 16:15'! placeInStructure: var "See if we should put this array into a structure *************** *** 114,117 **** --- 114,118 ---- (check includes: $=) ifTrue: [^false]. (check includes: $() ifTrue: [^false]. + (check includes: $[) ifTrue: [^false]. (#( 'showSurfaceFn' 'memory' 'extraVMMemory' 'interpreterProxy') includes: var) ifTrue: [^false]. ^true. |