-
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:
|
Message from Keith Randall: Patch Set 4: Commit-Queue+1 (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/684377. |
Message from Go LUCI: Patch Set 4: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2025-06-30T22:56:32Z","revision":"2ceedc341ccb11b5085ba0d4fd0d94ffc5c7f6b5"} Please don’t reply on this GitHub thread. Visit golang.org/cl/684377. |
Message from Keith Randall: Patch Set 4: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/684377. |
Message from Go LUCI: Patch Set 4: This CL has failed the run. Reason: Failed Tryjobs:
To reproduce, try Additional links for debugging:
To reproduce, try Additional links for debugging: Please don’t reply on this GitHub thread. Visit golang.org/cl/684377. |
Message from Go LUCI: Patch Set 4: LUCI-TryBot-Result-1 Please don’t reply on this GitHub thread. Visit golang.org/cl/684377. |
Message from Derek Parker: Patch Set 4: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/684377. |
When compiling without optimizations certain variables such as
return params end up missing location lists.
Fixes #65405