Add multi-target tests
[deliverable/binutils-gdb.git] / libiberty / hashtab.c
index 880c8787716520d8c80583ceb9c678a8b8dde065..9f917c3571d96a6ebd1e472f85bb85787f715a6c 100644 (file)
@@ -725,7 +725,7 @@ htab_remove_elt_with_hash (htab_t htab, PTR element, hashval_t hash)
   PTR *slot;
 
   slot = htab_find_slot_with_hash (htab, element, hash, NO_INSERT);
-  if (*slot == HTAB_EMPTY_ENTRY)
+  if (slot == NULL)
     return;
 
   if (htab->del_f)
This page took 0.034869 seconds and 4 git commands to generate.