You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pull request rust-lang/rust#53290 added the (nightly only) option -Z asm-comments, which makes LLVM emit comments in the disassembly, making it much more readable.
It would be awesome if the Rust playground could enable this flag in the disassembly view (for nightly builds, at least until it stabilises), possibly unconditionally (I don't think it has any downsides).
For implementation, I think it might be enough to add the flag here? Only issue I found is that that function doesn't have a parameter which would allow it to determine if it runs on nightly or not.
The text was updated successfully, but these errors were encountered:
For implementation, I think it might be enough to add the flag here? Only issue I found is that that function doesn't have a parameter which would allow it to determine if it runs on nightly or not.
I think you are right. Would you care to take this enhancement on?
I think just adding the channel as an argument to that function is fine. At some point we will need to step back and re-evaluate how all that stuff interacts, but not right now... 😉
Pull request rust-lang/rust#53290 added the (nightly only) option
-Z asm-comments
, which makes LLVM emit comments in the disassembly, making it much more readable.It would be awesome if the Rust playground could enable this flag in the disassembly view (for nightly builds, at least until it stabilises), possibly unconditionally (I don't think it has any downsides).
For implementation, I think it might be enough to add the flag here? Only issue I found is that that function doesn't have a parameter which would allow it to determine if it runs on nightly or not.
The text was updated successfully, but these errors were encountered: