From d5602cebf1ff25ef34298a52209283879609ec16 Mon Sep 17 00:00:00 2001 From: "Paul E. Murphy" Date: Tue, 28 Jun 2016 11:06:42 -0500 Subject: Convert _Complex tangent functions to generated code This converts s_c{,a}tan{,h}{f,,l} into a single templated file c{,a}tan{,h}_template.c with the exception of alpha. --- sysdeps/alpha/fpu/s_catanf.c | 12 ++++++++---- sysdeps/alpha/fpu/s_catanhf.c | 12 ++++++++---- sysdeps/alpha/fpu/s_ctanf.c | 12 ++++++++---- sysdeps/alpha/fpu/s_ctanhf.c | 12 ++++++++---- 4 files changed, 32 insertions(+), 16 deletions(-) (limited to 'sysdeps/alpha') diff --git a/sysdeps/alpha/fpu/s_catanf.c b/sysdeps/alpha/fpu/s_catanf.c index 76c1718dff..ee2443d4a4 100644 --- a/sysdeps/alpha/fpu/s_catanf.c +++ b/sysdeps/alpha/fpu/s_catanf.c @@ -24,14 +24,18 @@ #undef __catanf #undef catanf -#define __catanf internal_catanf static _Complex float internal_catanf (_Complex float x); -#include -#include "cfloat-compat.h" +#define M_DECL_FUNC(f) internal_catanf +#include -#undef __catanf +/* Disable any aliasing from base template. */ +#undef declare_mgen_alias +#define declare_mgen_alias(__to, __from) + +#include +#include "cfloat-compat.h" c1_cfloat_rettype __c1_catanf (c1_cfloat_decl (x)) diff --git a/sysdeps/alpha/fpu/s_catanhf.c b/sysdeps/alpha/fpu/s_catanhf.c index 18148ddafb..d9f2d2157f 100644 --- a/sysdeps/alpha/fpu/s_catanhf.c +++ b/sysdeps/alpha/fpu/s_catanhf.c @@ -24,14 +24,18 @@ #undef __catanhf #undef catanhf -#define __catanhf internal_catanhf static _Complex float internal_catanhf (_Complex float x); -#include -#include "cfloat-compat.h" +#define M_DECL_FUNC(f) internal_catanhf +#include -#undef __catanhf +/* Disable any aliasing from base template. */ +#undef declare_mgen_alias +#define declare_mgen_alias(__to, __from) + +#include +#include "cfloat-compat.h" c1_cfloat_rettype __c1_catanhf (c1_cfloat_decl (x)) diff --git a/sysdeps/alpha/fpu/s_ctanf.c b/sysdeps/alpha/fpu/s_ctanf.c index ee02f31c28..cd5dd910f3 100644 --- a/sysdeps/alpha/fpu/s_ctanf.c +++ b/sysdeps/alpha/fpu/s_ctanf.c @@ -24,14 +24,18 @@ #undef __ctanf #undef ctanf -#define __ctanf internal_ctanf static _Complex float internal_ctanf (_Complex float x); -#include -#include "cfloat-compat.h" +#define M_DECL_FUNC(f) internal_ctanf +#include -#undef __ctanf +/* Disable any aliasing from base template. */ +#undef declare_mgen_alias +#define declare_mgen_alias(__to, __from) + +#include +#include "cfloat-compat.h" c1_cfloat_rettype __c1_ctanf (c1_cfloat_decl (x)) diff --git a/sysdeps/alpha/fpu/s_ctanhf.c b/sysdeps/alpha/fpu/s_ctanhf.c index cb99279de6..359f053489 100644 --- a/sysdeps/alpha/fpu/s_ctanhf.c +++ b/sysdeps/alpha/fpu/s_ctanhf.c @@ -24,14 +24,18 @@ #undef __ctanhf #undef ctanhf -#define __ctanhf internal_ctanhf static _Complex float internal_ctanhf (_Complex float x); -#include -#include "cfloat-compat.h" +#define M_DECL_FUNC(f) internal_ctanhf +#include -#undef __ctanhf +/* Disable any aliasing from base template. */ +#undef declare_mgen_alias +#define declare_mgen_alias(__to, __from) + +#include +#include "cfloat-compat.h" c1_cfloat_rettype __c1_ctanhf (c1_cfloat_decl (x)) -- cgit v1.2.3