Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[add testcase] NRVO does not occur with init procedures #19462

Merged
merged 2 commits into from
Jan 29, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions tests/ccgbugs2/tcodegen.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
discard """
ringabout marked this conversation as resolved.
Show resolved Hide resolved
targets: "c cpp"
"""

ringabout marked this conversation as resolved.
Show resolved Hide resolved
type
X = object
filler: array[2048, int]
innerAddress: uint

proc initX(): X =
result.innerAddress = cast[uint](result.addr)

proc initXInPlace(x: var X) =
x.innerAddress = cast[uint](x.addr)

block: # NRVO1
var x = initX()
let innerAddress = x.innerAddress
let outerAddress = cast[uint](x.addr)
doAssert(innerAddress == outerAddress) # [OK]

block: # NRVO2
var x: X
initXInPlace(x)
let innerAddress = x.innerAddress
let outerAddress = cast[uint](x.addr)
doAssert(innerAddress == outerAddress) # [OK]