//===-- int_to_fp_impl.inc - integer to floating point conversion ---------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // Thsi file implements a generic conversion from an integer type to an // IEEE-754 floating point type, allowing a common implementation to be hsared // without copy and paste. // //===----------------------------------------------------------------------===// #include "int_to_fp.h" static __inline dst_t __floatXiYf__(src_t a) { … }