-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Avoid reseting the thread local interner at the beginning of phase_1_parse_input
#34856
Conversation
cc @cgswords @murarth |
@bors: r+ |
📌 Commit d008b3f has been approved by |
⌛ Testing commit d008b3f with merge 5f01508... |
💔 Test failed - auto-mac-64-opt |
☔ The latest upstream changes (presumably #34860) made this pull request unmergeable. Please resolve the merge conflicts. |
remove the thread local state reset at the beginning of `phase_1_parse_input`.
d008b3f
to
0042c1a
Compare
@bors r=nrc |
📌 Commit 0042c1a has been approved by |
⌛ Testing commit 0042c1a with merge 26fdb8a... |
💔 Test failed - auto-mac-64-opt |
I weakened the test that was causing problems on Mac and added a |
@@ -49,7 +49,8 @@ struct Baz<'x> { | |||
|
|||
impl<'a> Baz<'a> { | |||
fn baz2<'b>(&self, x: &isize) -> (&'b isize, &'b isize) { | |||
//~^ HELP consider using an explicit lifetime parameter as shown: fn baz2<'b>(&self, x: &'a isize) -> (&'a isize, &'a isize) | |||
//~^ HELP consider using an explicit lifetime parameter as shown: fn baz2<'b>(&self, x: &' | |||
// FIXME #34856: The above suggestion is different on Linux and Mac. |
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.
can you open an issue about the fact that this test is unrealiable and put the FIXME with that issue number?
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.
Done.
66fc469
to
a279f2f
Compare
@jseyfried r=me for that |
@bors r=nrc |
📌 Commit a279f2f has been approved by |
⌛ Testing commit a279f2f with merge fa1f199... |
💔 Test failed - auto-win-gnu-32-opt |
@bors: retry On Mon, Jul 25, 2016 at 2:49 PM, bors notifications@github.com wrote:
|
⌛ Testing commit a279f2f with merge d588189... |
💔 Test failed - auto-win-msvc-64-opt |
@bors: retry On Tue, Jul 26, 2016 at 3:09 AM, bors notifications@github.com wrote:
|
Avoid reseting the thread local interner at the beginning of `phase_1_parse_input` The thread local interner is used before `phase_1_parse_input` to create `InternedString`s, which currently wrap `Rc<String>`s. Once `InternedString` is refactored to be an interned string id (like `Name`), resetting will invalidate everything that was interned before `phase_1_parse_input`. The resets were only useful for the `rusti` project, which can now use `driver::reset_thread_local_state`. r? @nrc
The thread local interner is used before
phase_1_parse_input
to createInternedString
s, which currently wrapRc<String>
s. OnceInternedString
is refactored to be an interned string id (likeName
), resetting will invalidate everything that was interned beforephase_1_parse_input
.The resets were only useful for the
rusti
project, which can now usedriver::reset_thread_local_state
.r? @nrc