From 90188e7d1adc5d8743d7933c9ed1bf95f91dda62 Mon Sep 17 00:00:00 2001 From: "Gabriel F. T. Gomes" Date: Wed, 8 Aug 2018 09:58:36 -0300 Subject: ldbl-opt: Add err, errx, verr, verrx, warn, warnx, vwarn, and vwarnx (bug 23984) When support for long double format with 128-bits (-mlong-double-128) was added for platforms where long double had the same format as double, such as powerpc, compatibility versions for the functions listed in the commit title were missed. Since the older format of long double can still be used (with -mlong-double-64), using these functions with a format string that requests the printing of long double variables will produce wrong outputs. This patch adds the missing compatibility functions and header magic to redirect calls to them when -mlong-double-64 is in use. Tested for powerpc, powerpc64 and powerpc64le. --- include/bits/err-ldbl.h | 1 + 1 file changed, 1 insertion(+) create mode 100644 include/bits/err-ldbl.h (limited to 'include/bits/err-ldbl.h') diff --git a/include/bits/err-ldbl.h b/include/bits/err-ldbl.h new file mode 100644 index 0000000000..aa04305eae --- /dev/null +++ b/include/bits/err-ldbl.h @@ -0,0 +1 @@ +#include -- cgit 1.4.1