[CMake] Rename add_compiler_rt_static_runtime to add_compiler_rt_runtime.
[blocksruntime.git] / lib / builtins / x86_64 / floatdixf.c
blobc01193a82b5e8a82d8bfd97f533a0506826476f6
1 /* This file is distributed under the University of Illinois Open Source
2 * License. See LICENSE.TXT for details.
3 */
5 /* long double __floatdixf(di_int a); */
7 #ifdef __x86_64__
9 #include "../int_lib.h"
11 long double __floatdixf(int64_t a)
13 return (long double)a;
16 #endif /* __i386__ */