]> git.eshelyaron.com Git - emacs.git/commitdiff
fix hash table weakness
authorAndrea Corallo <andrea_corallo@yahoo.it>
Sat, 10 Aug 2019 16:16:17 +0000 (18:16 +0200)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:33:57 +0000 (11:33 +0100)
src/comp.c

index 29fd9ce4f2ecaa23ba617623e24cbfc71a8f4cb3..96e9c55f44310fbfbd958277f629373d03c26068 100644 (file)
@@ -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.  */