aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrea Corallo2019-08-10 18:16:17 +0200
committerAndrea Corallo2020-01-01 11:33:57 +0100
commite1757517c33d9c6428ecab8bc277aea14ec0c96f (patch)
treea8ba2ea0c8c3d9e9404b835e20bc26f4883a6267 /src
parent7720dceba1079151c37aa0a3117ac22dac45a119 (diff)
downloademacs-e1757517c33d9c6428ecab8bc277aea14ec0c96f.tar.gz
emacs-e1757517c33d9c6428ecab8bc277aea14ec0c96f.zip
fix hash table weakness
Diffstat (limited to 'src')
-rw-r--r--src/comp.c4
1 files 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,
2136 sizeof (void *), 2136 sizeof (void *),
2137 false); 2137 false);
2138 2138
2139 comp.func_hash = CALLN (Fmake_hash_table, QCtest, Qequal, QCweakness, Qt); 2139 comp.func_hash = CALLN (Fmake_hash_table, QCtest, Qequal);
2140 2140
2141 /* Define data structures. */ 2141 /* Define data structures. */
2142 2142
@@ -2241,7 +2241,7 @@ DEFUN ("comp-add-func-to-ctxt", Fcomp_add_func_to_ctxt, Scomp_add_func_to_ctxt,
2241 i)); 2241 i));
2242 comp.frame = frame; 2242 comp.frame = frame;
2243 2243
2244 comp.func_blocks = CALLN (Fmake_hash_table, QCtest, Qequal, QCweakness, Qt); 2244 comp.func_blocks = CALLN (Fmake_hash_table, QCtest, Qequal);
2245 2245
2246 /* Pre declare all basic blocks to gcc. 2246 /* Pre declare all basic blocks to gcc.
2247 The "entry" block must be declared as first. */ 2247 The "entry" block must be declared as first. */