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