summaryrefslogtreecommitdiff
path: root/src/math/atan2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/atan2.c')
-rw-r--r--src/math/atan2.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/math/atan2.c b/src/math/atan2.c
index f1cbe879..48321d3d 100644
--- a/src/math/atan2.c
+++ b/src/math/atan2.c
@@ -11,7 +11,6 @@ TYPE TGFN(atan2)(TYPE y, TYPE x)
SIGNAL_SAFE(0);
int classy = fpclassify(y);
int classx = fpclassify(x);
- ASSERT_NONZERO(x);
if (classy == FP_ZERO && classx == 0) {
if (signbit(x)) {