projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
481709e
)
[libc] Fix typographical error in math_utils.h.
author
Chris Gyurgyik
<37983775+cgyurgyik@users.noreply.github.com>
Wed, 8 Jul 2020 15:56:21 +0000
(11:56 -0400)
committer
GitHub
<noreply@github.com>
Wed, 8 Jul 2020 15:56:21 +0000
(11:56 -0400)
libc/src/math/math_utils.h
patch
|
blob
|
history
diff --git
a/libc/src/math/math_utils.h
b/libc/src/math/math_utils.h
index
50851bd
..
69028b0
100644
(file)
--- a/
libc/src/math/math_utils.h
+++ b/
libc/src/math/math_utils.h
@@
-80,7
+80,7
@@
using EnableIfFloatOrDouble = cpp::EnableIfType<IsFloatOrDouble<T>::Value, int>;
template <typename T, EnableIfFloatOrDouble<T> = 0>
T xflow(uint32_t sign, T y) {
// Underflow happens when two extremely small values are multiplied.
- // Likewise, overflow happens when two large values are mul
it
plied.
+ // Likewise, overflow happens when two large values are mul
ti
plied.
y = opt_barrier(sign ? -y : y) * y;
return with_errno(y, ERANGE);
}