-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/compile: return statement does not set result parameters before executing deferred function returned by a literal function #32175
Comments
An equivalent but slightly-more-readable version: https://play.golang.org/p/h5m8NezzYro |
Works as expected with gccgo. Works as expected with Go 1.4 and earlier, but not with Go 1.5 and later. |
I suspect the issue is that |
Actually, I think it's even more mundane than that: the first occurrence of go/src/cmd/compile/internal/gc/closure.go Lines 188 to 194 in 24b4301
|
Could be related to the introduction of named output arguments and the duality involved (#31630) ?
The timeline (sequence of instructions) might not be correct in combination with one or more levels of defer. |
@StephanVerbeeck I don't think so. I'm pretty sure it's like I stated in my last comment: |
Change https://golang.org/cl/178541 mentions this issue: |
Thanks! How do I find out what version of golang will have the fix? |
@sandan The fix will be included in Go 1.13. Thanks for the report! |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
See the playground example: https://play.golang.org/p/SptuCsFa3uw
I have two defer statements in their own functions. They both call anonymous functions that return a function to execute at the end of the function (when the result variable has been assigned the value in the return statement).
The functions differ in how the result variable is assigned it's value. One does it implicitly by returning the expression. The other does a bare return after modifying the named return variable.
What did you expect to see?
I expected to see the anonymous function (that prints "on exit") print the result variable with a value of 16 in the not_working() function.
What did you see instead?
That anonymous function printed 0 for the result return variable (the initial value of the result name return variable).
The text was updated successfully, but these errors were encountered: