From: Andrea Corallo Date: Sat, 10 Aug 2019 16:16:17 +0000 (+0200) Subject: fix hash table weakness X-Git-Tag: emacs-28.0.90~2727^2~1309 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e1757517c33d9c6428ecab8bc277aea14ec0c96f;p=emacs.git fix hash table weakness --- diff --git a/src/comp.c b/src/comp.c index 29fd9ce4f2e..96e9c55f443 100644 --- a/src/comp.c +++ b/src/comp.c @@ -2136,7 +2136,7 @@ DEFUN ("comp-init-ctxt", Fcomp_init_ctxt, Scomp_init_ctxt, sizeof (void *), false); - comp.func_hash = CALLN (Fmake_hash_table, QCtest, Qequal, QCweakness, Qt); + comp.func_hash = CALLN (Fmake_hash_table, QCtest, Qequal); /* Define data structures. */ @@ -2241,7 +2241,7 @@ DEFUN ("comp-add-func-to-ctxt", Fcomp_add_func_to_ctxt, Scomp_add_func_to_ctxt, i)); comp.frame = frame; - comp.func_blocks = CALLN (Fmake_hash_table, QCtest, Qequal, QCweakness, Qt); + comp.func_blocks = CALLN (Fmake_hash_table, QCtest, Qequal); /* Pre declare all basic blocks to gcc. The "entry" block must be declared as first. */