remove shallow usages for ORC (#20109)

This commit is contained in:
ringabout
2022-08-24 00:50:59 +08:00
committed by GitHub
parent e8556b45f5
commit 9753dd0a1b
3 changed files with 8 additions and 4 deletions

View File

@@ -84,7 +84,8 @@ proc mangleLocalName(p: BProc; s: PSym): Rope =
result = s.loc.r
if result == nil:
var key = s.name.s.mangle
shallow(key)
when not defined(nimSeqsV2):
shallow(key)
let counter = p.sigConflicts.getOrDefault(key)
result = key.rope
if s.kind == skTemp:
@@ -102,7 +103,8 @@ proc scopeMangledParam(p: BProc; param: PSym) =
## generate unique identifiers reliably (consider that ``var a = a`` is
## even an idiom in Nim).
var key = param.name.s.mangle
shallow(key)
when not defined(nimSeqsV2):
shallow(key)
p.sigConflicts.inc(key)
const

View File

@@ -101,7 +101,8 @@ proc fileInfoIdx*(conf: ConfigRef; filename: AbsoluteFile; isKnownFile: var bool
try:
canon = canonicalizePath(conf, filename)
shallow(canon.string)
when not defined(nimSeqsV2):
shallow(canon.string)
except OSError:
canon = filename
# The compiler uses "filenames" such as `command line` or `stdin`

View File

@@ -399,7 +399,8 @@ proc recv*(socket: AsyncSocket, size: int,
## to be read then the future will complete with a value of `""`.
if socket.isBuffered:
result = newString(size)
shallow(result)
when not defined(nimSeqsV2):
shallow(result)
let originalBufPos = socket.currPos
if socket.bufLen == 0: