Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
14e414ec
Commit
14e414ec
authored
Jun 25, 2001
by
rrt
Browse files
[project @ 2001-06-25 09:49:59 by rrt]
Comment out an uncomfortable ASSERT for now.
parent
265be40f
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/rts/Hash.c
View file @
14e414ec
/*-----------------------------------------------------------------------------
* $Id: Hash.c,v 1.
3
200
0/12/04 12:31:21 simonmar
Exp $
* $Id: Hash.c,v 1.
4
200
1/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
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment