locale: Remove ununsed wctype_table_get function
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 10 Mar 2022 12:51:20 +0000 (09:51 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 23 Mar 2022 17:32:23 +0000 (14:32 -0300)
locale/programs/ld-ctype.c

index 5169d62..c6749db 100644 (file)
@@ -3354,33 +3354,6 @@ wctype_table_init (struct wctype_table *t)
   t->level3_alloc = t->level3_size = 0;
 }
 
-/* Retrieve an entry.  */
-static inline int
-wctype_table_get (struct wctype_table *t, uint32_t wc)
-{
-  uint32_t index1 = wc >> (t->q + t->p + 5);
-  if (index1 < t->level1_size)
-    {
-      uint32_t lookup1 = t->level1[index1];
-      if (lookup1 != EMPTY)
-       {
-         uint32_t index2 = ((wc >> (t->p + 5)) & ((1 << t->q) - 1))
-                           + (lookup1 << t->q);
-         uint32_t lookup2 = t->level2[index2];
-         if (lookup2 != EMPTY)
-           {
-             uint32_t index3 = ((wc >> 5) & ((1 << t->p) - 1))
-                               + (lookup2 << t->p);
-             uint32_t lookup3 = t->level3[index3];
-             uint32_t index4 = wc & 0x1f;
-
-             return (lookup3 >> index4) & 1;
-           }
-       }
-    }
-  return 0;
-}
-
 /* Add one entry.  */
 static void
 wctype_table_add (struct wctype_table *t, uint32_t wc)