-
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
Rollup of 7 pull requests #37382
Merged
Merged
Rollup of 7 pull requests #37382
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
sophiajt
commented
Oct 24, 2016
- Successful merges: Fix a error of 'book/deref-coercions.html' #37228, Add missing urls in collections module #37304, Improve E0277 help message #37324, trans: Make names of internal symbols independent of CGU translation order #37328, debuginfo: Use TypeIdHasher for generating global debuginfo type IDs. #37336, rustfmt on metadata folder #37349, Link to PathBuf from the Path docs #37372
- Failed merges:
The original sentence is: > This example has two conversions: `Rc<String>` to `String` and then `String` to `&str`. But it should be > This example has two conversions: `Rc<String>` to `String` and then `String` to `str`. or > This example has two conversions: `&Rc<String>` to `&String` and then `&String` to `&str`. I think the latter is more clearly.
…order. Every codegen unit gets its own local counter for generating new symbol names. This makes bitcode and object files reproducible at the binary level even when incremental compilation is used.
Fix a error of 'book/deref-coercions.html' The original sentence is: > This example has two conversions: `Rc<String>` to `String` and then `String` to `&str`. But it should be > This example has two conversions: `Rc<String>` to `String` and then `String` to `str`. or > This example has two conversions: `&Rc<String>` to `&String` and then `&String` to `&str`. I think the latter is more clearly. r? @steveklabnik
…rewsxcv Add missing urls in collections module r? @steveklabnik
… r=jonathandturner Improve E0277 help message Fixes rust-lang#37319. r? @jonathandturner
…l-names, r=nagisa trans: Make names of internal symbols independent of CGU translation order Every codegen unit gets its own local counter for generating new symbol names. This makes bitcode and object files reproducible at the binary level even when incremental compilation is used. The PR also solves a rare ICE resulting from a naming conflict between a user defined name and a generated one. E.g. try compiling the following program with 1.12.1 stable: ```rust pub fn str7233() -> &'static str { "foo" } ``` This results in: > error: internal compiler error: ../src/librustc_trans/common.rs:979: symbol `str7233` is already defined Running into this is not very likely but it's also easily avoidable.
…, r=eddyb debuginfo: Use TypeIdHasher for generating global debuginfo type IDs. The only requirement for debuginfo type IDs is that they are globally unique. The `TypeIdHasher` (which is used for `std::intrinsic::type_id()` provides that, so we can get rid of some redundancy by re-using it for debuginfo. Values produced by the `TypeIdHasher` are also more stable than the current `UniqueTypeId` generation algorithm produces -- these incorporate the `NodeId`s, which is not good for incremental compilation. @alexcrichton @eddyb : Could you take a look at the endianess adaptations that I made to the `TypeIdHasher`? Also, are we sure that a 64 bit hash is wide enough for something that is supposed to be globally unique? For debuginfo I'm using 160 bits to make sure that we don't run into conflicts there.
rustfmt on metadata folder
…klabnik Link to PathBuf from the Path docs I got stuck trying to use `Path` when `PathBuf` was what I needed. Hopefully this makes `PathBuf` and the module docs a bit easier to find for others. r? @steveklabnik
r? @eddyb (rust_highfive has picked a reviewer for you, use r? to override) |
@bors r+ p=1 |
📌 Commit e948cf1 has been approved by |
⌛ Testing commit e948cf1 with merge 7a20864... |
bors
added a commit
that referenced
this pull request
Oct 24, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.