1276789Sdim/* This file is distributed under the University of Illinois Open Source
2276789Sdim * License. See LICENSE.TXT for details.
3276789Sdim */
4276789Sdim
5276789Sdim/* long double __floatdixf(di_int a); */
6276789Sdim
7276789Sdim#ifdef __x86_64__
8276789Sdim
9276789Sdim#include "../int_lib.h"
10276789Sdim
11276789Sdimlong double __floatdixf(int64_t a)
12276789Sdim{
13276789Sdim	return (long double)a;
14276789Sdim}
15276789Sdim
16276789Sdim#endif /* __i386__ */
17