Skip to content

Commit 1381f9a

Browse files
author
rthomas
committed
Force rebuild GNU hash table even though it's empty
1 parent dc31e15 commit 1381f9a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/ELF/Builder.tcc

+2-4
Original file line numberDiff line numberDiff line change
@@ -884,13 +884,11 @@ void Builder::build_symbol_gnuhash(void) {
884884

885885
const std::vector<uint64_t>& filters = gnu_hash.bloom_filters();
886886
if (filters.size() > 0 and filters[0] == 0) {
887-
VLOG(VDEBUG) << "Bloom filter is null: nothing to do!";
888-
return;
887+
VLOG(VDEBUG) << "Bloom filter is null";
889888
}
890889

891890
if (shift2 == 0) {
892-
VLOG(VDEBUG) << "Shift2 is null: nothing to do!";
893-
return;
891+
VLOG(VDEBUG) << "Shift2 is null";
894892
}
895893

896894
VLOG(VDEBUG) << "Number of buckets " << std::dec << nb_buckets;

0 commit comments

Comments
 (0)