sim/aarch64: remove two unused functions
authorAndrew Burgess <aburgess@redhat.com>
Wed, 19 Oct 2022 14:16:53 +0000 (15:16 +0100)
committerAndrew Burgess <aburgess@redhat.com>
Mon, 24 Oct 2022 16:20:29 +0000 (17:20 +0100)
These functions are not used.  Clang warns about the unused functions,
which is then converted into an error by -Werror.

Delete the unused functions.

sim/aarch64/simulator.c

index 516a7830522616f4841f6190d8b4522fbddcd872..5881725cefdcfeb931dfa9306140910d93a23241 100644 (file)
     }                                                                  \
   while (0)
 
-/* Helper functions used by expandLogicalImmediate.  */
-
-/* for i = 1, ... N result<i-1> = 1 other bits are zero  */
-static inline uint64_t
-ones (int N)
-{
-  return (N == 64 ? (uint64_t)-1UL : ((1UL << N) - 1));
-}
-
-/* result<0> to val<N>  */
-static inline uint64_t
-pickbit (uint64_t val, int N)
-{
-  return pickbits64 (val, N, N);
-}
-
 static uint64_t
 expand_logical_immediate (uint32_t S, uint32_t R, uint32_t N)
 {