tools/llvm: Do not build with symbols
[minix3.git] / sys / external / bsd / compiler_rt / dist / lib / x86_64 / floatdidf.c
blob388404e5e08918315ce777315fc0bba23611a393
1 /* This file is distributed under the University of Illinois Open Source
2 * License. See LICENSE.TXT for details.
3 */
5 /* double __floatdidf(di_int a); */
7 #ifdef __x86_64__
9 #include "../int_lib.h"
11 double __floatdidf(int64_t a)
13 return (double)a;
16 #endif /* __x86_64__ */