svn commit: r270796 - projects/arm64/lib/libc/gdtoa
Andrew Turner
andrew at FreeBSD.org
Fri Aug 29 09:03:18 UTC 2014
Author: andrew
Date: Fri Aug 29 09:03:17 2014
New Revision: 270796
URL: http://svnweb.freebsd.org/changeset/base/270796
Log:
__hldtoa uses compiler-rt symbols we don't provide.
An update to compiler-rt will be needed for some symbols clang
expects to be available.
Modified:
projects/arm64/lib/libc/gdtoa/_hldtoa.c
Modified: projects/arm64/lib/libc/gdtoa/_hldtoa.c
==============================================================================
--- projects/arm64/lib/libc/gdtoa/_hldtoa.c Fri Aug 29 09:02:01 2014 (r270795)
+++ projects/arm64/lib/libc/gdtoa/_hldtoa.c Fri Aug 29 09:03:17 2014 (r270796)
@@ -76,6 +76,8 @@ char *
__hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign,
char **rve)
{
+ abort();
+#if 0
union IEEEl2bits u;
char *s, *s0;
manh_t manh;
@@ -162,6 +164,7 @@ __hldtoa(long double e, const char *xdig
if (rve != NULL)
*rve = s;
return (s0);
+#endif
}
#else /* (LDBL_MANT_DIG == DBL_MANT_DIG) */
More information about the svn-src-projects
mailing list