@@ -553,7 +553,7 @@ proc fillSeqOp(c: var TLiftCtx; t: PType; body, x, y: PNode) =
553553 body.add setLenSeqCall (c, t, x, y)
554554 forallElements (c, t, body, x, y)
555555 of attachedSink:
556- let moveCall = genBuiltin (c, mMove, " move " , x)
556+ let moveCall = genBuiltin (c, mMove, " internalMove " , x)
557557 moveCall.add y
558558 doAssert t.destructor != nil
559559 moveCall.add destructorCall (c, t.destructor, x)
@@ -586,7 +586,7 @@ proc useSeqOrStrOp(c: var TLiftCtx; t: PType; body, x, y: PNode) =
586586 body.add newHookCall (c, t.assignment, x, y)
587587 of attachedSink:
588588 # we always inline the move for better performance:
589- let moveCall = genBuiltin (c, mMove, " move " , x)
589+ let moveCall = genBuiltin (c, mMove, " internalMove " , x)
590590 moveCall.add y
591591 doAssert t.destructor != nil
592592 moveCall.add destructorCall (c, t.destructor, x)
@@ -617,7 +617,7 @@ proc fillStrOp(c: var TLiftCtx; t: PType; body, x, y: PNode) =
617617 of attachedAsgn, attachedDeepCopy, attachedDup:
618618 body.add callCodegenProc (c.g, " nimAsgnStrV2" , c.info, genAddr (c, x), y)
619619 of attachedSink:
620- let moveCall = genBuiltin (c, mMove, " move " , x)
620+ let moveCall = genBuiltin (c, mMove, " internalMove " , x)
621621 moveCall.add y
622622 doAssert t.destructor != nil
623623 moveCall.add destructorCall (c, t.destructor, x)
0 commit comments