[squeak-dev] The Trunk: Kernel-mt.1364.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Dec 16 08:33:34 UTC 2020


Marcel Taeumel uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-mt.1364.mcz

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

Name: Kernel-mt.1364
Author: mt
Time: 16 December 2020, 9:33:32.156464 am
UUID: 138652b8-3f41-45fa-b272-13d99680d2d3
Ancestors: Kernel-dtl.1363

Changes default bytecode set to SistaV1. (This is a regression from when I enabled reset for all pragma preferences.)

=============== Diff against Kernel-dtl.1363 ===============

Item was changed:
  ----- Method: CompiledCode class>>preferredBytecodeSetEncoderClass (in category 'preferences') -----
  preferredBytecodeSetEncoderClass
  	<preference: 'Preferred bytecode set encoder class'
  	  category: 'Compiler'
  	  description: 'The system supports up to two bytecode sets; select the preferred one to use here.  See CompiledCode class variables PrimaryBytecodeSetEncoderClass and SecondaryBytecodeSetEncoderClass.'
  	  type: #Class>
+ 	^PreferredBytecodeSetEncoderClass ifNil: [SecondaryBytecodeSetEncoderClass]!
- 	^PreferredBytecodeSetEncoderClass ifNil: [PrimaryBytecodeSetEncoderClass]!



More information about the Squeak-dev mailing list