From 4f9aeee6c7414bec2e1d8a9d3508dbd21f4d3394 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Mon, 14 Feb 2011 10:24:33 -0800 Subject: More completely fixed the 0-key thing. Unfortunately this degrades hash table lookup performance by about 8%, which affects the streaming benchmark for googlemessage1 by about 5%. We could get this back at the cost of some memory, but it would be nice to avoid that. --- src/upb_table.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/upb_table.c') diff --git a/src/upb_table.c b/src/upb_table.c index 39b8f20..720cc62 100644 --- a/src/upb_table.c +++ b/src/upb_table.c @@ -129,7 +129,6 @@ static void intinsert(upb_inttable *t, upb_inttable_entry *e) void upb_inttable_insert(upb_inttable *t, upb_inttable_entry *e) { - assert(e->key != 0); if((double)(t->t.count + 1) / upb_inttable_size(t) > MAX_LOAD) { /* Need to resize. New table of double the size, add old elements to it. */ upb_inttable new_table; -- cgit v1.2.3