xref: /freebsd/contrib/llvm-project/compiler-rt/lib/builtins/x86_64/floatdisf.c (revision 0b57cec536236d46e3dba9bd041533462f33dbb7)
1*0b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
2*0b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
3*0b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4*0b57cec5SDimitry Andric 
5*0b57cec5SDimitry Andric #if defined(__x86_64__) || defined(_M_X64)
6*0b57cec5SDimitry Andric 
7*0b57cec5SDimitry Andric #include "../int_lib.h"
8*0b57cec5SDimitry Andric 
__floatdisf(int64_t a)9*0b57cec5SDimitry Andric float __floatdisf(int64_t a) { return (float)a; }
10*0b57cec5SDimitry Andric 
11*0b57cec5SDimitry Andric #endif // __x86_64__
12