Fixes #5821 (float32 literal comparison issue) (#5825)

* Remove processing hints for async procs.
* Fixes #5821.
This commit is contained in:
Dominik Picheta
2017-05-17 14:57:06 +01:00
committed by Andreas Rumpf
parent 943aaecbe7
commit 06415eb69d
4 changed files with 19 additions and 7 deletions

View File

@@ -78,8 +78,10 @@ proc genLiteral(p: BProc, n: PNode, ty: PType): Rope =
[p.module.tmpBase, rope(id)])
else:
result = makeCString(n.strVal)
of nkFloatLit..nkFloat64Lit:
of nkFloatLit, nkFloat64Lit:
result = rope(n.floatVal.toStrMaxPrecision)
of nkFloat32Lit:
result = rope(n.floatVal.toStrMaxPrecision("f"))
else:
internalError(n.info, "genLiteral(" & $n.kind & ')')
result = nil

View File

@@ -12,17 +12,17 @@ import strutils
proc c_sprintf(buf, frmt: cstring) {.importc: "sprintf", header: "<stdio.h>", nodecl, varargs.}
proc toStrMaxPrecision*(f: BiggestFloat): string =
proc toStrMaxPrecision*(f: BiggestFloat, literalPostfix = ""): string =
if f != f:
result = "NAN"
elif f == 0.0:
result = "0.0"
result = "0.0" & literalPostfix
elif f == 0.5 * f:
if f > 0.0: result = "INF"
else: result = "-INF"
else:
var buf: array[0..80, char]
c_sprintf(buf, "%#.16e", f)
c_sprintf(buf, "%#.16e" & literalPostfix, f)
result = $buf
proc encodeStr*(s: string, result: var string) =

View File

@@ -306,7 +306,6 @@ proc asyncSingleProc(prc: NimNode): NimNode {.compileTime.} =
" proc/method definition or lambda node expected.")
let prcName = prc.name.getName
hint("Processing " & prcName & " as an async proc.")
let returnType = prc.params[0]
var baseType: NimNode
@@ -527,8 +526,6 @@ macro multisync*(prc: untyped): untyped =
##
## The generated async procedures use the ``async`` macro, whereas the
## generated synchronous procedures simply strip off the ``await`` calls.
hint("Processing " & prc[0].getName & " as a multisync proc.")
let (sync, asyncPrc) = splitProc(prc)
result = newStmtList()
result.add(asyncSingleProc(asyncPrc))

View File

@@ -0,0 +1,13 @@
discard """
file: "tissue5821.nim"
output: ''''''
"""
proc main(): void =
let a: float32 = 47.11'f32
doAssert a == 47.11'f32
let b: float64 = 10.234402823e+38'f64
doAssert b != 10.123402823e+38'f64
doAssert b == 10.234402823e+38'f64
main()