2015-05-13 02:33:42 +08:00
|
|
|
//===-- lib/truncdfhf2.c - double -> half conversion --------------*- C -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define SRC_DOUBLE
|
|
|
|
#define DST_HALF
|
|
|
|
#include "fp_trunc_impl.inc"
|
|
|
|
|
2015-10-08 00:15:22 +08:00
|
|
|
ARM_EABI_FNALIAS(d2h, truncdfhf2)
|
|
|
|
|
2015-05-13 02:33:42 +08:00
|
|
|
COMPILER_RT_ABI uint16_t __truncdfhf2(double a) {
|
|
|
|
return __truncXfYf2__(a);
|
|
|
|
}
|