blob: c01193a82b5e8a82d8bfd97f533a0506826476f6 [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
Daniel Dunbardbaa3972011-11-16 01:19:16 +00009#include "../int_lib.h"
Daniel Dunbarb3a69012009-06-26 16:47:03 +000010
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__ */