Remove unreachable code.

This commit is contained in:
Qi Wang 2023-07-05 14:02:14 -07:00 committed by Qi Wang
parent 602edd7566
commit e249d1a2a1

View File

@ -340,7 +340,6 @@ ffs_u32(uint32_t x) {
#else #else
#error No implementation for 32-bit ffs() #error No implementation for 32-bit ffs()
#endif #endif
return ffs_u(x);
} }
static inline unsigned static inline unsigned
@ -350,7 +349,6 @@ fls_u32(uint32_t x) {
#else #else
#error No implementation for 32-bit fls() #error No implementation for 32-bit fls()
#endif #endif
return fls_u(x);
} }
static inline uint64_t static inline uint64_t