Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame^] | 1 | // 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 | |||||
10 | double __floatdidf(int64_t a) | ||||
11 | { | ||||
12 | return (double)a; | ||||
13 | } | ||||
14 | |||||
15 | #endif // __x86_64__ |