| Daniel Dunbar | b3a6901 | 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 | // long double __floatdixf(di_int a); | ||||
| 5 | |||||
| 6 | #ifdef __x86_64__ | ||||
| 7 | |||||
| 8 | #include <stdint.h> | ||||
| 9 | |||||
| 10 | long double __floatdixf(int64_t a) | ||||
| 11 | { | ||||
| 12 | return (long double)a; | ||||
| 13 | } | ||||
| 14 | |||||
| 15 | #endif // __i386__ | ||||