blob: cce3cd514a4047ca65385b61a2d4d96554911f0a [file] [log] [blame]
Edward O'Callaghanf8ba5e92009-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 Dunbarfd089992009-06-26 16:47:03 +00004
Edward O'Callaghanf8ba5e92009-08-08 04:43:56 +00005/* double __floatdidf(di_int a); */
Daniel Dunbarfd089992009-06-26 16:47:03 +00006
7#ifdef __x86_64__
8
9#include <stdint.h>
10
11double __floatdidf(int64_t a)
12{
13 return (double)a;
14}
15
Edward O'Callaghanf8ba5e92009-08-08 04:43:56 +000016#endif /* __x86_64__ */