From: rrt Date: Mon, 25 Jun 2001 09:49:59 +0000 (+0000) Subject: [project @ 2001-06-25 09:49:59 by rrt] X-Git-Tag: Approximately_9120_patches~1725 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=14e414ecf358fa62c5cdc99a33f4597e8b3124d6;p=ghc-hetmet.git [project @ 2001-06-25 09:49:59 by rrt] Comment out an uncomfortable ASSERT for now. --- diff --git a/ghc/rts/Hash.c b/ghc/rts/Hash.c index 876ba50..9acecbd 100644 --- a/ghc/rts/Hash.c +++ b/ghc/rts/Hash.c @@ -1,5 +1,5 @@ /*----------------------------------------------------------------------------- - * $Id: Hash.c,v 1.3 2000/12/04 12:31:21 simonmar Exp $ + * $Id: Hash.c,v 1.4 2001/06/25 09:49:59 rrt Exp $ * * (c) The AQUA Project, Glasgow University, 1995-1998 * (c) The GHC Team, 1999 @@ -243,7 +243,7 @@ insertHashTable(HashTable *table, StgWord key, void *data) HashList *hl; /* We want no duplicates */ - ASSERT(lookupHashTable(table, key) == NULL); + // ASSERT(lookupHashTable(table, key) == NULL); /* When the average load gets too high, we expand the table */ if (++table->kcount >= HLOAD * table->bcount)