-
Notifications
You must be signed in to change notification settings - Fork 12.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
remove useless rust_main
wrapper
#9284
Conversation
the real entry point will now pass the user's main function directly to the scheduler
the real entry point will now pass the user's main function directly to the scheduler
I think that this broke |
rusti compiles and starts for me, but a simple let does fail currently: jaten@i7:/usr/cn/rust/github-master/rust$ rustc -v jaten@i7:/usr/cn/rust/github-master/rust$ rusti |
It didn't hit this error because it never hit the JIT, if it hit the JIT I believe it'd hit this error (maybe some other bugs were introduced along the way as well). |
Indeed:
|
fix typo in tests/ui/redundant_allocation.rs changelog: none
the real entry point will now pass the user's main function directly to
the scheduler