diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-07 06:38:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-07 06:38:41 +0000 |
commit | 34faffac00434ac706dc4f8a4934d6a50ca4addb (patch) | |
tree | 79e44e20c782b72428e2ec7f6ceb25ce89ac7ba9 | |
parent | c865f7ae8be99de29c9f2ab68573c11e90b636d1 (diff) |
fix a typo that Sebastian noticed!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64008 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Headers/tgmath-sofar.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |