[Vm-dev] VM Maker: VMMaker.oscog-EstebanLorenzano.2024.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 5 08:59:34 UTC 2016


Esteban Lorenzano uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-EstebanLorenzano.2024.mcz

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

Name: VMMaker.oscog-EstebanLorenzano.2024
Author: EstebanLorenzano
Time: 5 December 2016, 9:57:01.004046 am
UUID: 7870434f-e14e-4873-b8b9-5f639ef5d66d
Ancestors: VMMaker.oscog-eem.2023

rename temp var to avoid conflict with global while generating sources. 

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

Item was changed:
  ----- Method: CogBytecodeFixup>>recordBcpc: (in category 'simulation') -----
+ recordBcpc: theBytecodePC
- recordBcpc: bytecodePC
  	<inline: true>
  	self cCode: '' inSmalltalk:
  		[bcpc
+ 			ifNil: [bcpc := theBytecodePC]
- 			ifNil: [bcpc := bytecodePC]
  			ifNotNil:
  				[bcpc := bcpc isInteger
+ 							ifTrue: [{bcpc. theBytecodePC}]
+ 							ifFalse: [bcpc, {theBytecodePC}]]]!
- 							ifTrue: [{bcpc. bytecodePC}]
- 							ifFalse: [bcpc, {bytecodePC}]]]!



More information about the Vm-dev mailing list