mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-09 22:43:34 +00:00
* Remove processing hints for async procs. * Fixes #5821.
This commit is contained in:
committed by
Andreas Rumpf
parent
943aaecbe7
commit
06415eb69d
@@ -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
|
||||
|
||||
@@ -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) =
|
||||
|
||||
@@ -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))
|
||||
|
||||
13
tests/float/tissue5821.nim
Normal file
13
tests/float/tissue5821.nim
Normal 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()
|
||||
Reference in New Issue
Block a user