[Vm-dev] [commit][3266] CogVM source as per VMMaker.oscog-eem.1085

commits at squeakvm.org commits at squeakvm.org
Thu Mar 5 19:49:04 UTC 2015


Revision: 3266
Author:   eliot
Date:     2015-03-05 11:49:02 -0800 (Thu, 05 Mar 2015)
Log Message:
-----------
CogVM source as per VMMaker.oscog-eem.1085

Fix slip in LargeIntegersPlugin (thanks Nicolas).

Modified Paths:
--------------
    branches/Cog/src/plugins/LargeIntegers/LargeIntegers.c

Property Changed:
----------------
    branches/Cog/platforms/Cross/vm/sqSCCSVersion.h


Property changes on: branches/Cog/platforms/Cross/vm/sqSCCSVersion.h
___________________________________________________________________
Modified: checkindate
   - Tue Mar  3 13:28:42 PST 2015
   + Thu Mar  5 11:49:24 PST 2015

Modified: branches/Cog/src/plugins/LargeIntegers/LargeIntegers.c
===================================================================
--- branches/Cog/src/plugins/LargeIntegers/LargeIntegers.c	2015-03-05 00:59:05 UTC (rev 3265)
+++ branches/Cog/src/plugins/LargeIntegers/LargeIntegers.c	2015-03-05 19:49:02 UTC (rev 3266)
@@ -1,9 +1,9 @@
 /* Automatically generated by
-	SmartSyntaxPluginCodeGenerator VMMaker.oscog-eem.1079 uuid: fdd342f3-6d47-4bbe-be50-86e2865b8b3b
+	SmartSyntaxPluginCodeGenerator VMMaker.oscog-eem.1085 uuid: bd028125-317e-40fe-ac8c-461e7f59dbb6
    from
-	LargeIntegersPlugin VMMaker.oscog-eem.1079 uuid: fdd342f3-6d47-4bbe-be50-86e2865b8b3b
+	LargeIntegersPlugin VMMaker.oscog-eem.1085 uuid: bd028125-317e-40fe-ac8c-461e7f59dbb6
  */
-static char __buildInfo[] = "LargeIntegersPlugin VMMaker.oscog-eem.1079 uuid: fdd342f3-6d47-4bbe-be50-86e2865b8b3b " __DATE__ ;
+static char __buildInfo[] = "LargeIntegersPlugin VMMaker.oscog-eem.1085 uuid: bd028125-317e-40fe-ac8c-461e7f59dbb6 " __DATE__ ;
 
 
 
@@ -173,9 +173,9 @@
 struct VirtualMachine* interpreterProxy;
 static const char *moduleName =
 #ifdef SQUEAK_BUILTIN_PLUGIN
-	"LargeIntegers v1.5 VMMaker.oscog-eem.1079 (i)"
+	"LargeIntegers v1.5 VMMaker.oscog-eem.1085 (i)"
 #else
-	"LargeIntegers v1.5 VMMaker.oscog-eem.1079 (e)"
+	"LargeIntegers v1.5 VMMaker.oscog-eem.1085 (e)"
 #endif
 ;
 static const int  orOpIndex = 1;
@@ -2244,7 +2244,7 @@
 	if (len == 0) {
 		return integerObjectOf(0);
 	}
-	sLen = ((MinSmallInteger) > 0x3FFFFFFF
+	sLen = ((MaxSmallInteger) > 0x3FFFFFFF
 		? 8
 		: 4);
 	if ((len <= sLen)



More information about the Vm-dev mailing list