[svn:parrot] r46254 - trunk/src/interp

darbelo at svn.parrot.org darbelo at svn.parrot.org
Mon May 3 22:33:37 UTC 2010


Author: darbelo
Date: Mon May  3 22:33:37 2010
New Revision: 46254
URL: https://trac.parrot.org/parrot/changeset/46254

Log:
Remove '#if 0' from  src/interp/inter_cb.c

Modified:
   trunk/src/interp/inter_cb.c

Modified: trunk/src/interp/inter_cb.c
==============================================================================
--- trunk/src/interp/inter_cb.c	Mon May  3 22:33:18 2010	(r46253)
+++ trunk/src/interp/inter_cb.c	Mon May  3 22:33:37 2010	(r46254)
@@ -314,11 +314,6 @@
       case 'v':
         pasm_sig[1] = 'v';
         break;
-#if 0
-      case '2':
-      case '3':
-      case '4':
-#endif
       case 'l':
         i_param = (INTVAL)(long) external_data;
         goto case_I;
@@ -334,14 +329,6 @@
         pasm_sig[1] = 'I';
         param = (void*) i_param;
         break;
-#if 0
-      case 'f':
-      case 'd':
-        /* these types don't fit into a pointer, they will not
-         * work
-         */
-        break;
-#endif
       case 'p':
         /* created a UnManagedStruct */
         p_param = Parrot_pmc_new(interp, enum_class_UnManagedStruct);
@@ -349,11 +336,6 @@
         pasm_sig[1] = 'P';
         param = (void*) p_param;
         break;
-#if 0
-      case 'P':
-        pasm_sig[1] = 'P';
-        break;
-#endif
       case 't':
         pasm_sig[1] = 'S';
         param = Parrot_str_new(interp, external_data, 0);


More information about the parrot-commits mailing list