[Vm-dev] VM Maker: VMMaker.oscog-eem.2987.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jul 16 17:01:50 UTC 2021


Eliot Miranda uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-eem.2987.mcz

==================== Summary ====================

Name: VMMaker.oscog-eem.2987
Author: eem
Time: 16 July 2021, 10:01:39.696388 am
UUID: a04be31b-0684-47d9-8eab-044c097bce29
Ancestors: VMMaker.oscog-eem.2986

Get rid of a compilation warning on 64 bits in the RePlugin.

=============== Diff against VMMaker.oscog-eem.2986 ===============

Item was changed:
  ----- Method: RePlugin class>>declareCVarsIn: (in category 'plugin code generation') -----
  declareCVarsIn: cg
  
  	cg addHeaderFile:'"rePlugin.h"'.
  
  	"Memory Management Error Checking"
  	cg var: 'netMemory' 	declareC: 'int netMemory = 0'.
+ 	cg var: 'numAllocs' 		declareC: 'int numAllocs = 0'.
- 	cg var: 'numAllocs' 	declareC: 'int numAllocs = 0'.
  	cg var: 'numFrees' 		declareC: 'int numFrees = 0'.
  	cg var: 'lastAlloc'		declareC: 'int lastAlloc = 0'.
  
  	"Support Variables for Access to Receiver Instance Variables"
+ 	cg var: 'patternStrPtr' type: #'const char *'.
+ 	cg var: 'errorStrBuffer'	type: #'const char *'.
+ 	cg var: 'errorOffset'	type: #int!
- 	cg var: 'patternStrPtr' type: 'const char * '.
- 	cg var: 'errorStrBuffer'	type: 'const char * '.!



More information about the Vm-dev mailing list