[svn:parrot] r44289 - trunk/src/pmc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Mon Feb 22 04:54:54 UTC 2010


Author: mikehh
Date: Mon Feb 22 04:54:53 2010
New Revision: 44289
URL: https://trac.parrot.org/parrot/changeset/44289

Log:
fix codetest failure - cuddled else

Modified:
   trunk/src/pmc/oplib.pmc

Modified: trunk/src/pmc/oplib.pmc
==============================================================================
--- trunk/src/pmc/oplib.pmc	Mon Feb 22 04:51:24 2010	(r44288)
+++ trunk/src/pmc/oplib.pmc	Mon Feb 22 04:54:53 2010	(r44289)
@@ -66,7 +66,8 @@
         if (VTABLE_defined_keyed_str(INTERP, OPLIB_OPCODE_CACHE, name)) {
             PMC * const op = VTABLE_get_pmc_keyed_str(INTERP, OPLIB_OPCODE_CACHE, name);
             return op;
-        } else {
+        }
+        else {
             PMC * const op = Parrot_pmc_new_noinit(INTERP, enum_class_Opcode);
             VTABLE_set_string_native(INTERP, op, name);
             PObj_custom_mark_SET(op);


More information about the parrot-commits mailing list