diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-12 15:31:13 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-12 15:31:13 -0800 |
commit | 81327b8c61093804d2d8ce5212e5dad8aa75b831 (patch) | |
tree | dbae7624027aeb39eeb9249b696c926ecbdd8fcb | |
parent | 5784264d0eec915ccf5e7a930ee85e36e3a12923 (diff) | |
download | cproc-81327b8c61093804d2d8ce5212e5dad8aa75b831.tar.xz |
Allow overflow/underflow when parsing floating constants
-rw-r--r-- | expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |