2019-01-19 16:50:56 +08:00
|
|
|
/* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
* See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-08-08 12:43:56 +08:00
|
|
|
*/
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2009-08-08 12:43:56 +08:00
|
|
|
/* long double __floatdixf(di_int a); */
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#ifdef __x86_64__
|
|
|
|
|
2011-11-16 09:19:16 +08:00
|
|
|
#include "../int_lib.h"
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
long double __floatdixf(int64_t a)
|
|
|
|
{
|
|
|
|
return (long double)a;
|
|
|
|
}
|
|
|
|
|
2009-08-08 12:43:56 +08:00
|
|
|
#endif /* __i386__ */
|