sparc: Enable __clzsi2() and __clzdi2()

This patch is similiar to commit e795b9011 (RISC-V: Add libgcc helpers
for clz) but for SPARC target.

Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com>
Reviewed-by: Ross Philipson <ross.philipson@oracle.com>
This commit is contained in:
Daniel Kiper 2019-03-19 10:51:01 +01:00 committed by Vincent Batts
parent 9c4c933f05
commit d422df6711
2 changed files with 4 additions and 4 deletions

View File

@ -420,7 +420,7 @@ __aeabi_llsl (grub_uint64_t u, int b)
#endif
#if defined(__mips__) || defined(__riscv)
#if defined(__mips__) || defined(__riscv) || defined(__sparc__)
/* Based on libgcc from gcc suite. */
int
__clzsi2 (grub_uint32_t val)
@ -448,7 +448,7 @@ __clzsi2 (grub_uint32_t val)
}
#endif
#ifdef __riscv
#if defined(__riscv) || defined(__sparc__)
int
__clzdi2 (grub_uint64_t val)
{

View File

@ -110,12 +110,12 @@ EXPORT_FUNC (__aeabi_llsr) (grub_uint64_t u, int b);
#endif
#if defined(__mips__) || defined(__riscv)
#if defined(__mips__) || defined(__riscv) || defined(__sparc__)
int
EXPORT_FUNC (__clzsi2) (grub_uint32_t val);
#endif
#ifdef __riscv
#if defined(__riscv) || defined(__sparc__)
int
EXPORT_FUNC (__clzdi2) (grub_uint64_t val);
#endif