mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
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:
@@ -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) =
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user