Skip to content

Rollup of 11 pull requests #57869

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

Merged
merged 34 commits into from
Jan 24, 2019
Merged

Rollup of 11 pull requests #57869

merged 34 commits into from
Jan 24, 2019

Conversation

Centril
Copy link
Contributor

@Centril Centril commented Jan 23, 2019

Successful merges:

Failed merges:

r? @ghost

Xaeroxe and others added 30 commits December 28, 2018 14:15

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Attempt to recover from parse errors while parsing a struct's literal fields
by skipping tokens until a comma or the closing brace is found. This allows
errors in other fields to be reported.

Verified

This commit was signed with the committer’s verified signature.
davidtwco David Wood
This commit adds a error (and accompanying machine applicable
suggestion) for trailing angle brackets on function calls with a
turbofish.

Verified

This commit was signed with the committer’s verified signature.
davidtwco David Wood
This commit pluralizes error messages when more than a single trailing
`>` character is present.

Verified

This commit was signed with the committer’s verified signature.
davidtwco David Wood
This commit extends the trailing `>` detection to also work for paths
such as `Foo::<Bar>>:Baz`.

This involves making the existing check take the token that is expected
to follow the path being checked as a parameter.

Care is taken to ensure that this only happens on the construction of a
whole path segment and not a partial path segment (during recursion).

Through this enhancement, it was also observed that the ordering of
right shift token and greater than tokens was overfitted to the examples
being tested.

In practice, given a sequence of `>` characters: `>>>>>>>>>`
..then they will be split into `>>` eagerly: `>> >> >> >> >`.
..but when a `<` is prepended, then the first `>>` is split:
`<T> > >> >> >> >`
..and then when another `<` is prepended, a right shift is first again:
`Vec<<T>> >> >> >> >`

In the previous commits, a example that had two `<<` characters was
always used and therefore it was incorrectly assumed that `>>` would
always be first - but when there is a single `<`, this is not the case.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Issue 57762 points out a compiler crash when the compiler was built
using a stock LLVM 7.  LLVM 7 was released without a necessary fix for
a bug in the DWARF discriminant code.

This patch changes rustc to use the fallback mode on (non-Rust) LLVM 7.

Closes rust-lang#57762
Address the review comments by simplifying the version check to
just "< 8".

Verified

This commit was signed with the committer’s verified signature.
euclio Andy Russell

Verified

This commit was signed with the committer’s verified signature.
pietroalbini Pietro Albini
On Ubuntu 16.04 git 2.7.4 tries to fix the line ending of .png and .ico
files, and obviously it ruins them. This commit adds an attribute to
those files to properly mark them as binary.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update std/lib.rs docs to reflect Rust 2018 usage

Fixes rust-lang#56544

This paragraph was written for Rust 2015.  Since 2018 has been stable for a while I think we can update it.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…ertj

Merge visitors in AST validation

Cuts runtime for AST validation on `syntex_syntax` from 31.5 ms to 17 ms.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…avidtwco

Recover from parse errors in literal struct fields and incorrect float literals

Fix rust-lang#52496.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Explain type mismatch cause pointing to return type when it is `impl Trait`

Fix rust-lang#57743.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Use structured suggestion in stead of notes

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add error for trailing angle brackets.

Fixes rust-lang#54521.

This PR adds a error (and accompanying machine applicable
suggestion) for trailing angle brackets on function calls with a
turbofish.

r? @estebank

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Stabilize Any::get_type_id and rename to type_id

FCP: rust-lang#27745 (comment)

Closes rust-lang#27745.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix some cross crate existential type ICEs

fixes rust-lang#53443

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix issue 57762

against a stock LLVM 7.  LLVM 7 was released without a necessary fix
for a bug in the DWARF discriminant code.

This patch changes rustc to use the fallback mode on (non-Rust) LLVM 7.

Closes rust-lang#57762

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
use port 80 for retrieving GPG key

This works around firewalls blocking port 11371.

See https://unix.stackexchange.com/questions/75892/keyserver-timed-out-when-trying-to-add-a-gpg-public-key.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…uillaumeGomez

Ignore line ending on older git versions

On Ubuntu 16.04 git 2.7.4 tries to fix the line ending of `.png` and `.ico` files, and obviously it ruins them. This PR adds an attribute to those files to ignore which line ending they use.

r? @GuillaumeGomez
@Centril
Copy link
Contributor Author

Centril commented Jan 23, 2019

@bors r+ p=10

@bors
Copy link
Collaborator

bors commented Jan 23, 2019

📌 Commit e90cdfd has been approved by Centril

@bors bors added the S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. label Jan 23, 2019
@bors
Copy link
Collaborator

bors commented Jan 24, 2019

⌛ Testing commit e90cdfd with merge cd3d580...

bors added a commit that referenced this pull request Jan 24, 2019
Rollup of 11 pull requests

Successful merges:

 - #57179 (Update std/lib.rs docs to reflect Rust 2018 usage)
 - #57730 (Merge visitors in AST validation)
 - #57779 (Recover from parse errors in literal struct fields and incorrect float literals)
 - #57793 (Explain type mismatch cause pointing to return type when it is `impl Trait`)
 - #57795 (Use structured suggestion in stead of notes)
 - #57817 (Add error for trailing angle brackets.)
 - #57834 (Stabilize Any::get_type_id and rename to type_id)
 - #57836 (Fix some cross crate existential type ICEs)
 - #57840 (Fix issue 57762)
 - #57844 (use port 80 for retrieving GPG key)
 - #57858 (Ignore line ending on older git versions)

Failed merges:

r? @ghost
@bors
Copy link
Collaborator

bors commented Jan 24, 2019

☀️ Test successful - checks-travis, status-appveyor
Approved by: Centril
Pushing cd3d580 to master...

@bors
Copy link
Collaborator

bors commented Jan 24, 2019

☀️ Test successful - checks-travis, status-appveyor
Approved by: Centril
Pushing cd3d580 to master...

@bors bors merged commit e90cdfd into rust-lang:master Jan 24, 2019
@Centril Centril deleted the rollup branch January 24, 2019 04:16
@Centril Centril added the rollup A PR which is a rollup label Oct 2, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
rollup A PR which is a rollup S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet