floatdisf.c revision 215125
167754Smsmith/* This file is distributed under the University of Illinois Open Source
267754Smsmith * License. See LICENSE.TXT for details.
367754Smsmith */
467754Smsmith
567754Smsmith#ifdef __x86_64__
667754Smsmith
767754Smsmith#include <stdint.h>
8217365Sjkim
9229989Sjkimfloat __floatdisf(int64_t a)
1070243Smsmith{
1167754Smsmith	return (float)a;
12217365Sjkim}
13217365Sjkim
14217365Sjkim#endif /* __x86_64__ */
15217365Sjkim