-
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
Fix wrong condition in base::internalize_symbols(). #34917
Fix wrong condition in base::internalize_symbols(). #34917
Conversation
r? @Aatch (rust_highfive has picked a reviewer for you, use r? to override) |
Would be nice if you could add a test, but otherwise r=me. |
This fixes #34891 for me. |
@TimNN Excellent |
@bors r+ |
📌 Commit f782088 has been approved by |
The travis failure looks legit to me. Edit: Making |
@bors r- 'till that's fixed. |
Yes, the error looks legit. The internalizer does not take the |
Alright, that seems to have worked. @eddyb, care to review that last commit too? |
|
||
// Collect all external declarations in all compilation units. | ||
for ccx in cx.iter() { | ||
// Collect all symbols that need stay externally visible because they |
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.
whoops, typo: "need to stay"
r=me with the typo fixed. |
e5c4b16
to
ecc1295
Compare
@bors r=eddyb |
📌 Commit ecc1295 has been approved by |
⌛ Testing commit ecc1295 with merge a7af87c... |
💔 Test failed - auto-linux-64-cargotest |
@bors: retry On Wed, Jul 20, 2016 at 5:51 PM, bors notifications@github.com wrote:
|
⌛ Testing commit ecc1295 with merge 1caeab7... |
💔 Test failed - auto-win-gnu-32-opt |
@bors: retry sorry for the number of retries... On Thu, Jul 21, 2016 at 12:30 PM, bors notifications@github.com wrote:
|
@bors p=1 this may fix a huge regr in compiler perf |
Fix wrong condition in base::internalize_symbols(). Fix a typo that snuck into #34899 (and completely broke `internalize_symbols()`).
Fix a typo that snuck into #34899 (and completely broke
internalize_symbols()
).