xref: /freebsd/contrib/llvm-project/compiler-rt/lib/builtins/x86_64/floatdidf.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 // double __floatdidf(di_int a);
6*0b57cec5SDimitry Andric 
7*0b57cec5SDimitry Andric #if defined(__x86_64__) || defined(_M_X64)
8*0b57cec5SDimitry Andric 
9*0b57cec5SDimitry Andric #include "../int_lib.h"
10*0b57cec5SDimitry Andric 
__floatdidf(int64_t a)11*0b57cec5SDimitry Andric double __floatdidf(int64_t a) { return (double)a; }
12*0b57cec5SDimitry Andric 
13*0b57cec5SDimitry Andric #endif // __x86_64__
14