blob: ecef079b6e6533e95dacf6283c00769bd4f5b2e0 [file] [log] [blame]
Daniel Dunbarfd089992009-06-26 16:47:03 +00001// This file is distributed under the University of Illinois Open Source
2// License. See LICENSE.TXT for details.
3
4// double __floatdidf(di_int a);
5
6#ifdef __x86_64__
7
8#include <stdint.h>
9
10double __floatdidf(int64_t a)
11{
12 return (double)a;
13}
14
15#endif // __x86_64__