VM Maker: VMMaker.oscog-eem.2933.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

VM Maker: VMMaker.oscog-eem.2933.mcz

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

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

Name: VMMaker.oscog-eem.2933
Author: eem
Time: 14 January 2021, 4:32:48.434554 pm
UUID: 40063e45-0e58-4195-a825-e21b1df79769
Ancestors: VMMaker.oscog-eem.2932

Float>>coerceTo:sim: should handle #double as well.

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

Item was changed:
  ----- Method: Float>>coerceTo:sim: (in category '*VMMaker-interpreter simulator') -----
  coerceTo: cTypeString sim: interpreter
 
+ cTypeString = #float ifTrue:
- cTypeString = #'float' ifTrue:
  [^self].
+ cTypeString = #double ifTrue:
+ [^self].
  self halt!