[svn:parrot] r41699 - branches/pcc_reapply/src

allison at svn.parrot.org allison at svn.parrot.org
Sun Oct 4 17:05:16 UTC 2009


Author: allison
Date: Sun Oct  4 17:05:14 2009
New Revision: 41699
URL: https://trac.parrot.org/parrot/changeset/41699

Log:
[pcc] Reverting r41696 as it caused a build failure.

Modified:
   branches/pcc_reapply/src/nci_test.c

Modified: branches/pcc_reapply/src/nci_test.c
==============================================================================
--- branches/pcc_reapply/src/nci_test.c	Sun Oct  4 16:58:18 2009	(r41698)
+++ branches/pcc_reapply/src/nci_test.c	Sun Oct  4 17:05:14 2009	(r41699)
@@ -37,8 +37,6 @@
 #include <stdlib.h>
 #include <string.h>
 #include <parrot/config.h>
-#include <parrot/interpreter.h>
-#include <parrot/core_types.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -749,7 +747,7 @@
 PARROT_EXPORT void
 nci_vP(void *pmc)
 {
-    if (!PMC_IS_NULL((Parrot_PMC*)pmc))
+    if (pmc)
         puts("ok");
     else
         puts("got null");


More information about the parrot-commits mailing list