-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Reland " Upgrade to LLVM 14.0.2" #45679
Conversation
https://reviews.llvm.org/D100944 introduces will split sections if the metadata does not match. The GlobalVariables are `RW_` and the `.text` section is `R_X`. Currently there is no facility to actually mark the GV as `R_X` and we only need to write them during code-emission before we flip the permissions.
PkgEval run comparing assertions on the previous version of this PR vs. the commit before: 6c97a48#commitcomment-76075908. |
So no new assertion failures. |
@@ -101,8 +101,14 @@ void jl_init_stack_limits(int ismaster, void **stack_lo, void **stack_hi) | |||
struct rlimit rl; | |||
getrlimit(RLIMIT_STACK, &rl); | |||
size_t stacksize = rl.rlim_cur; | |||
// We intentionally leak a stack address here core.StackAddressEscape |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Related: #45617 🙂
#45195 contained many assertions in the package ecosystem
that were accidentially overlooked by me.
So let's calmly reland this once we figure those out.