[svn:parrot] r49247 - branches/gc_massacre/src/gc

pmichaud at svn.parrot.org pmichaud at svn.parrot.org
Wed Sep 22 17:40:34 UTC 2010


Author: pmichaud
Date: Wed Sep 22 17:40:33 2010
New Revision: 49247
URL: https://trac.parrot.org/parrot/changeset/49247

Log:
[gc]:  Enable ms2 to properly report itself to interpinfo as "ms2" instead of "unknown".

Modified:
   branches/gc_massacre/src/gc/api.c

Modified: branches/gc_massacre/src/gc/api.c
==============================================================================
--- branches/gc_massacre/src/gc/api.c	Wed Sep 22 15:02:39 2010	(r49246)
+++ branches/gc_massacre/src/gc/api.c	Wed Sep 22 17:40:33 2010	(r49247)
@@ -1002,6 +1002,9 @@
         case INF:
             name = Parrot_str_new(interp, "inf", 3);
             break;
+        case MS2:
+            name = Parrot_str_new(interp, "ms2", 3);
+            break;
         default:
             name = Parrot_str_new(interp, "unknown", 7);
             break;


More information about the parrot-commits mailing list