-
Notifications
You must be signed in to change notification settings - Fork 13.3k
rustc: Fix some ThinLTO internalization #45215
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
Conversation
r? @arielb1 (rust_highfive has picked a reviewer for you, use r? to override) |
5cd5a78
to
e4b1536
Compare
Thank you, Alex! @bors r+ |
📌 Commit e4b1536 has been approved by |
⌛ Testing commit e4b1536918a01ed6c78b056b37a70315e43a6d2b with merge 91c17361d07433ec9a11ed3ed023bb588984e89c... |
💔 Test failed - status-travis |
Legit. You forgot to move some auxiliary files 😄
|
First the `addPreservedGUID` function forgot to take care of "alias" summaries. I'm not 100% sure what this is but the current code now matches upstream. Next the `computeDeadSymbols` return value wasn't actually being used, but it needed to be used! Together these should... Closes rust-lang#45195
e4b1536
to
2e1c4cd
Compare
@bors: r=michaelwoerister |
📌 Commit 2e1c4cd has been approved by |
⌛ Testing commit 2e1c4cd with merge 07adde34d967efad0b397f6dd6b4793d8ce49b7f... |
💔 Test failed - status-travis |
@bors retry The build got spuriously cancelled? |
…lwoerister rustc: Fix some ThinLTO internalization First the `addPreservedGUID` function forgot to take care of "alias" summaries. I'm not 100% sure what this is but the current code now matches upstream. Next the `computeDeadSymbols` return value wasn't actually being used, but it needed to be used! Together these should... Closes #45195
☀️ Test successful - status-appveyor, status-travis |
🎉 |
First the
addPreservedGUID
function forgot to take care of "alias" summaries.I'm not 100% sure what this is but the current code now matches upstream. Next
the
computeDeadSymbols
return value wasn't actually being used, but it neededto be used! Together these should...
Closes #45195