VM Maker: VMMaker.oscog-eem.2659.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.2659.mcz

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

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

Name: VMMaker.oscog-eem.2659
Author: eem
Time: 9 January 2020, 10:19:20.319563 pm
UUID: 442ae512-679e-40e6-9582-47528bdf3a58
Ancestors: VMMaker.oscog-eem.2658

Have Slang placate C and the senders of printForwarder: by having printForwarder: match the return type of printOop: et al.

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

Item was changed:
  ----- Method: StackInterpreter>>printForwarder: (in category 'debug printing') -----
  printForwarder: oop
  <inline: false>
  self
  print: ' is a forwarded object to '; printHex: (objectMemory followForwarded: oop);
  print: ' of slot size '; printNum: (objectMemory numSlotsOfAny: oop).
+ objectMemory printHeaderTypeOf: oop.
+ self cr.
+ ^0!
- objectMemory printHeaderTypeOf: oop.
- self cr!