tiny refactoring related to sink parameter inference logic (#21064)

* tiny refactoring related to sink parameter inference logic

* Update compiler/sempass2.nim
This commit is contained in:
Andreas Rumpf
2022-12-10 15:42:22 +01:00
committed by GitHub
parent f330b33e2b
commit 2ebd71bfd4
2 changed files with 1 additions and 2 deletions

View File

@@ -814,7 +814,7 @@ proc passedToEffectsDelayedParam(tracked: PEffects; n: PNode) =
]#
proc checkForSink(tracked: PEffects; n: PNode) =
if tracked.inIfStmt == 0:
if tracked.inIfStmt == 0 and optSinkInference in tracked.config.options:
checkForSink(tracked.config, tracked.c.idgen, tracked.owner, n)
proc trackCall(tracked: PEffects; n: PNode) =

View File

@@ -19,7 +19,6 @@ proc checkForSink*(config: ConfigRef; idgen: IdGenerator; owner: PSym; arg: PNod
var local = p # sink parameter?
passToSink(local)
]#
if optSinkInference notin config.options: return
case arg.kind
of nkSym:
if arg.sym.kind == skParam and