1 //===-- fixsfsi.c - Implement __fixsfsi -----------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #define SINGLE_PRECISION
11 typedef si_int fixint_t
;
12 typedef su_int fixuint_t
;
13 #include "fp_fixint_impl.inc"
15 COMPILER_RT_ABI si_int
__fixsfsi(fp_t a
) { return __fixint(a
); }
17 #if defined(__ARM_EABI__)
18 #if defined(COMPILER_RT_ARMHF_TARGET)
19 AEABI_RTABI si_int
__aeabi_f2iz(fp_t a
) { return __fixsfsi(a
); }
21 COMPILER_RT_ALIAS(__fixsfsi
, __aeabi_f2iz
)