fixunssfti.c 723 B

1234567891011121314151617181920212223242526
  1. /* ===-- fixunssfti.c - Implement __fixunssfti -----------------------------===
  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 __fixunssfti for the compiler_rt library.
  11. *
  12. * ===----------------------------------------------------------------------===
  13. */
  14. #define SINGLE_PRECISION
  15. #include "fp_lib.h"
  16. #if defined(CRT_HAS_128BIT)
  17. typedef tu_int fixuint_t;
  18. #include "fp_fixuint_impl.inc"
  19. COMPILER_RT_ABI tu_int
  20. __fixunssfti(fp_t a) {
  21. return __fixuint(a);
  22. }
  23. #endif