From: Chris Lattner Date: Sat, 7 Feb 2009 06:38:41 +0000 (+0000) Subject: fix a typo that Sebastian noticed! X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=34faffac00434ac706dc4f8a4934d6a50ca4addb;p=clang fix a typo that Sebastian noticed! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64008 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Headers/tgmath-sofar.h b/lib/Headers/tgmath-sofar.h index 4d4de54619..4585135e2b 100644 --- a/lib/Headers/tgmath-sofar.h +++ b/lib/Headers/tgmath-sofar.h @@ -71,7 +71,7 @@ // FIXME: atan2 -> binary operation. #define cbrt(x) __builtin_overload(1, x, cbrtl, cbrt, cbrtf) -#define ceil(x) __builtin_overload(1, x, ceil, ceil, ceilf) +#define ceil(x) __builtin_overload(1, x, ceill, ceil, ceilf) // FIXME: copysign -> binary operation. #define erf(x) __builtin_overload(1, x, erfl, erf, erff) #define erfc(x) __builtin_overload(1, x, erfcl, erfc, erfcf)