blob: 388404e5e08918315ce777315fc0bba23611a393 [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
Edward O'Callaghan33c13472009-08-08 04:43:56 +00005/* double __floatdidf(di_int a); */
Daniel Dunbarb3a69012009-06-26 16:47:03 +00006
7#ifdef __x86_64__
8
Daniel Dunbardbaa3972011-11-16 01:19:16 +00009#include "../int_lib.h"
Daniel Dunbarb3a69012009-06-26 16:47:03 +000010
11double __floatdidf(int64_t a)
12{
13 return (double)a;
14}
15
Edward O'Callaghan33c13472009-08-08 04:43:56 +000016#endif /* __x86_64__ */