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

commits at source.squeak.org commits at source.squeak.org
Tue Dec 15 19:16:52 UTC 2015


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

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

Name: VMMaker.oscog-eem.1597
Author: eem
Time: 15 December 2015, 11:14:56.69 am
UUID: d40647ee-f0e2-471a-8007-2d2ca3483790
Ancestors: VMMaker.oscog-eem.1596

Fix a regression in VMMaker.oscog-eem.1596

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

Item was changed:
  ----- Method: CCodeGenerator>>generateSignedIntToLong:on:indent: (in category 'C translation') -----
  generateSignedIntToLong: msgNode on: aStream indent: level
  	"Generate the C code for this message onto the given stream."
  
  	aStream nextPutAll: '((usqInt) '.
+ 	(vmClass notNil
+ 	 and: [vmClass objectMemoryClass wordSize = 8]) ifTrue:
- 	vmClass objectMemoryClass wordSize = 8 ifTrue:
  		[aStream nextPutAll: '(int)'].
  	self emitCExpression: msgNode receiver on: aStream.
  	aStream nextPut: $)!



More information about the Vm-dev mailing list