aboutsummaryrefslogtreecommitdiff
path: root/src/parse_f128.c
AgeCommit message (Collapse)Author
2020-09-21rename src-self-hosted/ to src/Andrew Kelley
2020-03-15allow `_` separators in number literals (stage 1)momumi
* Underscores `_` may be placed between two digits in a int/float literal * Consecutive underscores are not allowed * Fixed parsing bug in exponents of hexadecimal float literals. Exponents should always be base 10, but hex characters would be parsed inside the exponent and everything after them would be ignored. eg: `0x1.0p1ab1` would be parsed as `0x1.0p1`.
2019-03-23parse_f128.c: fix whitespaceAndrew Kelley
2019-03-22fix macos build instructions in readme and fix warningAndrew Kelley
2019-03-22get rid of restrict; it's not supported by MSVCAndrew Kelley
2019-03-22avoid quad float literal syntax for MSVCAndrew Kelley
2019-03-22float literals now parse using musl's 128 bit float codeAndrew Kelley
fixes float literals not having 128 bit precision