From e1757517c33d9c6428ecab8bc277aea14ec0c96f Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sat, 10 Aug 2019 18:16:17 +0200 Subject: [PATCH] fix hash table weakness --- src/comp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. */ -- 2.39.5