aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-02-12 15:31:13 -0800
committerMichael Forney <mforney@mforney.org>2019-02-12 15:31:13 -0800
commit81327b8c61093804d2d8ce5212e5dad8aa75b831 (patch)
treedbae7624027aeb39eeb9249b696c926ecbdd8fcb
parent5784264d0eec915ccf5e7a930ee85e36e3a12923 (diff)
downloadcproc-81327b8c61093804d2d8ce5212e5dad8aa75b831.tar.xz
Allow overflow/underflow when parsing floating constants
-rw-r--r--expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/expr.c b/expr.c
index 92cd4d9..9e92fd3 100644
--- a/expr.c
+++ b/expr.c
@@ -208,7 +208,7 @@ primaryexpr(struct scope *s)
/* floating constant */
errno = 0;
e->constant.f = strtod(tok.lit, &end);
- if (errno)
+ if (errno && errno != ERANGE)
error(&tok.loc, "invalid floating constant '%s': %s", tok.lit, strerror(errno));
if (!end[0])
e->type = &typedouble;