[svn:parrot] r40876 - branches/context_pmc3/src

bacek at svn.parrot.org bacek at svn.parrot.org
Sun Aug 30 13:01:54 UTC 2009


Author: bacek
Date: Sun Aug 30 13:01:54 2009
New Revision: 40876
URL: https://trac.parrot.org/parrot/changeset/40876

Log:
[cage] Fix codetest failure in hash.c

Modified:
   branches/context_pmc3/src/hash.c

Modified: branches/context_pmc3/src/hash.c
==============================================================================
--- branches/context_pmc3/src/hash.c	Sun Aug 30 13:01:35 2009	(r40875)
+++ branches/context_pmc3/src/hash.c	Sun Aug 30 13:01:54 2009	(r40876)
@@ -1282,8 +1282,6 @@
     const UINTVAL hashval = (hash->hash_val)(interp, key, hash->seed);
     HashBucket   *bucket  = hash->bi[hashval & hash->mask];
 
-    //PARROT_ASSERT((hash->entry_type != enum_type_PMC) || value);
-
     /* Very complex assert that we'll not put non-constant stuff into constant hash */
     PARROT_ASSERT(
         PMC_IS_NULL(hash->container)


More information about the parrot-commits mailing list