-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
support alloca #6203
Comments
I think it's impossible to get that working. |
Well, I'll reopen in case there is some way I hadn't thought of. |
The full gcc __morestack implementation does allow for dynamically sized frames. It inserts calls to yet another __morestack function before alloca-ing. I don't particularly want to support it though. |
Visiting for bug triage, email from 2013-08-12. Nothing to add (wish list tag seems appropriate for now). |
There are no more segmented stacks, so supporting this seems very feasible. It could be implemented with a wrapper function performing a stack overflow check inside. |
I'm pulling a massive triage effort to get us ready for 1.0. As part of this, I'm moving stuff that's wishlist-like to the RFCs repo, as that's where major new things should get discussed/prioritized. This issue has been moved to the RFCs repo: rust-lang/rfcs#618 |
…r=Manishearth Fix links to labeled issues These labels seems wrong. - <https://github.com/rust-lang/rust-clippy/labels/L-crash%20%3Aboom%3A> - <https://github.com/rust-lang/rust-clippy/labels/L-bug%20%3Abeetle%3A> changelog: none
It's probably going to be tricky to get this working with the segmented stack implementation.
The text was updated successfully, but these errors were encountered: