blob: 96c3728e92c364ffda182bd5df70635ee68069fb [file] [log] [blame]
Edward O'Callaghan33c13472009-08-08 04:43:56 +00001/* This file is distributed under the University of Illinois Open Source
2 * License. See LICENSE.TXT for details.
3 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +00004
5#ifdef __x86_64__
6
Daniel Dunbardbaa3972011-11-16 01:19:16 +00007#include "../int_lib.h"
Daniel Dunbarb3a69012009-06-26 16:47:03 +00008
9float __floatdisf(int64_t a)
10{
11 return (float)a;
12}
13
Edward O'Callaghan33c13472009-08-08 04:43:56 +000014#endif /* __x86_64__ */