[CMake] Rename add_compiler_rt_static_runtime to add_compiler_rt_runtime.
[blocksruntime.git] / lib / builtins / x86_64 / floatdisf.c
blob96c3728e92c364ffda182bd5df70635ee68069fb
1 /* This file is distributed under the University of Illinois Open Source
2 * License. See LICENSE.TXT for details.
3 */
5 #ifdef __x86_64__
7 #include "../int_lib.h"
9 float __floatdisf(int64_t a)
11 return (float)a;
14 #endif /* __x86_64__ */