blob: 73b5da9fa5b8dd782daac75a4d99e2023c3beca8 [file] [log] [blame]
Daniel Dunbarb3a69012009-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// long double __floatdixf(di_int a);
5
6#ifdef __x86_64__
7
8#include <stdint.h>
9
10long double __floatdixf(int64_t a)
11{
12 return (long double)a;
13}
14
15#endif // __i386__