From 7ffda37513835bbf0aaa65f4ad4984c41028d410 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Sat, 8 Feb 2014 02:50:06 -0500 Subject: [PATCH] s/atanhf/atanh/ --- fold.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fold.c b/fold.c index d90887d..f064f29 100644 --- a/fold.c +++ b/fold.c @@ -729,7 +729,7 @@ static GMQCC_INLINE ast_expression *fold_intrin_asinh(fold_t *fold, ast_value *a return fold_constgen_float(fold, asinhf(fold_immvalue_float(a))); } static GMQCC_INLINE ast_expression *fold_intrin_atanh(fold_t *fold, ast_value *a) { - return fold_constgen_float(fold, atanhf(fold_immvalue_float(a))); + return fold_constgen_float(fold, (float)atanh(fold_immvalue_float(a))); } static GMQCC_INLINE ast_expression *fold_intrin_exp(fold_t *fold, ast_value *a) { return fold_constgen_float(fold, expf(fold_immvalue_float(a))); -- 2.39.2