1 |
|
|
/* ===-- fixunssfsi.c - Implement __fixunssfsi -----------------------------=== |
2 |
|
|
* |
3 |
|
|
* The LLVM Compiler Infrastructure |
4 |
|
|
* |
5 |
|
|
* This file is dual licensed under the MIT and the University of Illinois Open |
6 |
|
|
* Source Licenses. See LICENSE.TXT for details. |
7 |
|
|
* |
8 |
|
|
* ===----------------------------------------------------------------------=== |
9 |
|
|
* |
10 |
|
|
* This file implements __fixunssfsi for the compiler_rt library. |
11 |
|
|
* |
12 |
|
|
* ===----------------------------------------------------------------------=== |
13 |
|
|
*/ |
14 |
|
|
|
15 |
|
|
#define SINGLE_PRECISION |
16 |
|
|
#include "fp_lib.h" |
17 |
|
|
typedef su_int fixuint_t; |
18 |
|
|
#include "fp_fixuint_impl.inc" |
19 |
|
|
|
20 |
|
|
ARM_EABI_FNALIAS(f2uiz, fixunssfsi) |
21 |
|
|
|
22 |
|
|
COMPILER_RT_ABI su_int |
23 |
|
|
__fixunssfsi(fp_t a) { |
24 |
|
|
return __fixuint(a); |
25 |
|
|
} |