aboutsummaryrefslogtreecommitdiff
path: root/elf/cache.c
diff options
context:
space:
mode:
authorJavier Pello <devel@otheo.eu>2022-09-27 20:07:24 +0200
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2022-10-06 07:59:48 -0300
commit4a7094119ce05cadf927f52cc5d723e2195e65f9 (patch)
tree094c7cb5d2b821c1af51302218bb3fc44be2fb9f /elf/cache.c
parentb78ff5a25dc8ba9d8c6df10bb0a533254bdd193f (diff)
downloadglibc-4a7094119ce05cadf927f52cc5d723e2195e65f9.zip
glibc-4a7094119ce05cadf927f52cc5d723e2195e65f9.tar.gz
glibc-4a7094119ce05cadf927f52cc5d723e2195e65f9.tar.bz2
elf: Remove hwcap parameter from add_to_cache signature
Last commit made it so that the value passed for that parameter was always 0 at its only call site. Signed-off-by: Javier Pello <devel@otheo.eu> Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'elf/cache.c')
-rw-r--r--elf/cache.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/elf/cache.c b/elf/cache.c
index f5f3ef8..ecbea2a 100644
--- a/elf/cache.c
+++ b/elf/cache.c
@@ -764,7 +764,7 @@ save_cache (const char *cache_name)
/* Add one library to the cache. */
void
add_to_cache (const char *path, const char *filename, const char *soname,
- int flags, unsigned int isa_level, uint64_t hwcap,
+ int flags, unsigned int isa_level,
struct glibc_hwcaps_subdirectory *hwcaps)
{
struct cache_entry *new_entry = xmalloc (sizeof (*new_entry));
@@ -782,22 +782,12 @@ add_to_cache (const char *path, const char *filename, const char *soname,
new_entry->path = path_interned;
new_entry->flags = flags;
new_entry->isa_level = isa_level;
- new_entry->hwcap = hwcap;
+ new_entry->hwcap = 0;
new_entry->hwcaps = hwcaps;
new_entry->bits_hwcap = 0;
if (hwcaps != NULL)
- {
- assert (hwcap == 0);
- hwcaps->used = true;
- }
-
- /* Count the number of bits set in the masked value. */
- for (size_t i = 0;
- (~((1ULL << i) - 1) & hwcap) != 0 && i < 8 * sizeof (hwcap); ++i)
- if ((hwcap & (1ULL << i)) != 0)
- ++new_entry->bits_hwcap;
-
+ hwcaps->used = true;
/* Keep the list sorted - search for right place to insert. */
struct cache_entry *ptr = entries;