1//===-- lib/truncdfhf2.c - double -> half conversion --------------*- C -*-===//
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#define SRC_DOUBLE
11#define DST_HALF
12#include "fp_trunc_impl.inc"
13
14COMPILER_RT_ABI uint16_t __truncdfhf2(double a) {
15    return __truncXfYf2__(a);
16}
17
18#if defined(__ARM_EABI__)
19#if defined(COMPILER_RT_ARMHF_TARGET)
20AEABI_RTABI uint16_t __aeabi_d2h(double a) {
21  return __truncdfhf2(a);
22}
23#else
24AEABI_RTABI uint16_t __aeabi_d2h(double a) COMPILER_RT_ALIAS(__truncdfhf2);
25#endif
26#endif
27