-
Notifications
You must be signed in to change notification settings - Fork 18.2k
cmd/compile: fix loclist for heap return vars without optimizations #74398
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
base: master
Are you sure you want to change the base?
Conversation
When compiling without optimizations certain variables such as return params end up missing location lists. Fixes golang#65405
This PR (HEAD: 7bbed4f) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/684377. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/684377. |
Message from Derek Parker: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/684377. |
This PR (HEAD: 1af2fc8) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/684377. Important tips:
|
This PR (HEAD: 994b9b0) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/684377. Important tips:
|
When compiling without optimizations certain variables such as
return params end up missing location lists.
Fixes #65405