-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 20 pull requests #53832
Rollup of 20 pull requests #53832
Commits on Aug 6, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 931eb4c - Browse repository at this point
Copy the full SHA 931eb4cView commit details
Commits on Aug 15, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 9a3a12e - Browse repository at this point
Copy the full SHA 9a3a12eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 34b65db - Browse repository at this point
Copy the full SHA 34b65dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5bfb785 - Browse repository at this point
Copy the full SHA 5bfb785View commit details
Commits on Aug 20, 2018
-
Force-inline
shallow_resolve
at its hottest call site.It's a ~1% win on `keccak` and `inflate`.
Configuration menu - View commit details
-
Copy full SHA for b73843f - Browse repository at this point
Copy the full SHA b73843fView commit details
Commits on Aug 21, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 3995bff - Browse repository at this point
Copy the full SHA 3995bffView commit details
Commits on Aug 25, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 9395a02 - Browse repository at this point
Copy the full SHA 9395a02View commit details
Commits on Aug 26, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 1f421d6 - Browse repository at this point
Copy the full SHA 1f421d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 26f38c0 - Browse repository at this point
Copy the full SHA 26f38c0View commit details
Commits on Aug 27, 2018
-
Configuration menu - View commit details
-
Copy full SHA for a2722f3 - Browse repository at this point
Copy the full SHA a2722f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4570ace - Browse repository at this point
Copy the full SHA 4570aceView commit details -
Configuration menu - View commit details
-
Copy full SHA for c874e36 - Browse repository at this point
Copy the full SHA c874e36View commit details -
fix a typo: taget_env -> target_env
This typo was introduced in rust-lang#47334. A couple tests bitrotted as a result, so we fix those too, and move them to a more sensible place.
Configuration menu - View commit details
-
Copy full SHA for 8486efa - Browse repository at this point
Copy the full SHA 8486efaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1d79d8b - Browse repository at this point
Copy the full SHA 1d79d8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 04b4c40 - Browse repository at this point
Copy the full SHA 04b4c40View commit details -
Configuration menu - View commit details
-
Copy full SHA for f77ad5c - Browse repository at this point
Copy the full SHA f77ad5cView commit details
Commits on Aug 28, 2018
-
Configuration menu - View commit details
-
Copy full SHA for e6dcdee - Browse repository at this point
Copy the full SHA e6dcdeeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 31b63d0 - Browse repository at this point
Copy the full SHA 31b63d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1311339 - Browse repository at this point
Copy the full SHA 1311339View commit details -
Configuration menu - View commit details
-
Copy full SHA for 84796cb - Browse repository at this point
Copy the full SHA 84796cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93f3f5b - Browse repository at this point
Copy the full SHA 93f3f5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6628d39 - Browse repository at this point
Copy the full SHA 6628d39View commit details -
Configuration menu - View commit details
-
Copy full SHA for da4febd - Browse repository at this point
Copy the full SHA da4febdView commit details
Commits on Aug 29, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 890d04d - Browse repository at this point
Copy the full SHA 890d04dView commit details -
Replace usages of 'bad_style' with 'nonstandard_style'.
`bad_style` is being deprecated in favor of `nonstandard_style`: - rust-lang#41646
Configuration menu - View commit details
-
Copy full SHA for e477a13 - Browse repository at this point
Copy the full SHA e477a13View commit details -
Configuration menu - View commit details
-
Copy full SHA for e08a84a - Browse repository at this point
Copy the full SHA e08a84aView commit details
Commits on Aug 30, 2018
-
Rollup merge of rust-lang#51760 - GuillaumeGomez:add-another-partiale…
…q-example, r=QuietMisdreavus Add another PartialEq example r? @steveklabnik
Configuration menu - View commit details
-
Copy full SHA for b7e74a5 - Browse repository at this point
Copy the full SHA b7e74a5View commit details -
Rollup merge of rust-lang#53113 - kpp:more_docs_for_cow, r=GuillaumeG…
…omez Add example for Cow Add one more example that shows how to keep `Cow` in a struct. Link to playground: https://play.rust-lang.org/?gist=a9256bdd034b44bc3cdd0044bbcdbb7c&version=stable&mode=debug&edition=2015 Users ask this question in [ruRust](https://gitter.im/ruRust/general) chat time to time and it is not obvious to add `ToOwned<Owned=Target>` to requirements of generic params.
Configuration menu - View commit details
-
Copy full SHA for 2531d43 - Browse repository at this point
Copy the full SHA 2531d43View commit details -
Rollup merge of rust-lang#53129 - nikomatsakis:issue-51172-tweak-test…
…, r=pnkfelix remove `let x = baz` which was obscuring the real error fixes rust-lang#51172
Configuration menu - View commit details
-
Copy full SHA for 8505270 - Browse repository at this point
Copy the full SHA 8505270View commit details -
Rollup merge of rust-lang#53389 - RalfJung:thread-join, r=sfackler
document effect of join on memory ordering Fixes rust-lang#45467
Configuration menu - View commit details
-
Copy full SHA for 0c8b8e8 - Browse repository at this point
Copy the full SHA 0c8b8e8View commit details -
Rollup merge of rust-lang#53472 - eddyb:fx-pls, r=pnkfelix
Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc. Most of the compiler uses the `Fx` hasher but some places ended up with the default one.
Configuration menu - View commit details
-
Copy full SHA for ba83270 - Browse repository at this point
Copy the full SHA ba83270View commit details -
Rollup merge of rust-lang#53476 - GuillaumeGomez:try-from-int-error-p…
…artial-eq, r=KodrAus Add partialeq implementation for TryFromIntError type Fixes rust-lang#53458.
Configuration menu - View commit details
-
Copy full SHA for a245d9b - Browse repository at this point
Copy the full SHA a245d9bView commit details -
Rollup merge of rust-lang#53513 - nnethercote:inline-shallow_resolve,…
… r=varkor Force-inline `shallow_resolve` at its hottest call site. It's a ~1% win on `keccak` and `inflate`.
Configuration menu - View commit details
-
Copy full SHA for 1c36e76 - Browse repository at this point
Copy the full SHA 1c36e76View commit details -
Rollup merge of rust-lang#53655 - jcpst:with_applicability, r=estebank
set applicability Update a few more calls as described in rust-lang#50723 r? @estebank
Configuration menu - View commit details
-
Copy full SHA for 1535075 - Browse repository at this point
Copy the full SHA 1535075View commit details -
Rollup merge of rust-lang#53702 - jkozlowski:correct_version_for_macr…
…o_vis_matcher, r=cramertj Fix stabilisation version for macro_vis_matcher. r? @cramertj
Configuration menu - View commit details
-
Copy full SHA for 3ee7628 - Browse repository at this point
Copy the full SHA 3ee7628View commit details -
Rollup merge of rust-lang#53727 - estebank:incorrect-deref-suggestion…
…, r=nikomatsakis Do not suggest dereferencing in macro Fix rust-lang#52783.
Configuration menu - View commit details
-
Copy full SHA for 0334ce4 - Browse repository at this point
Copy the full SHA 0334ce4View commit details -
Rollup merge of rust-lang#53732 - emilio:foreign-fn, r=nrc
save-analysis: Differentiate foreign functions and statics.
Configuration menu - View commit details
-
Copy full SHA for ed07680 - Browse repository at this point
Copy the full SHA ed07680View commit details -
Rollup merge of rust-lang#53740 - japaric:readobj, r=alexcrichton
add llvm-readobj to llvm-tools-preview Similar to readelf but supports more object formats (it seems). Particularly useful to inspect in detail sections (e.g. their flags) and symbols (e.g. their types). r? @alexcrichton cc @dvc94ch
Configuration menu - View commit details
-
Copy full SHA for d52fea8 - Browse repository at this point
Copy the full SHA d52fea8View commit details -
Rollup merge of rust-lang#53743 - oconnor663:target_env, r=kennytm
fix a typo: taget_env -> target_env This typo was introduced in rust-lang#47334. A couple tests bitrotted as a result, so we fix those too, and move them to a more sensible place. Is there some lint we could turn on that would've caught this? It's a drag that cfg typos can silently pass through the compiler.
Configuration menu - View commit details
-
Copy full SHA for eaca5f8 - Browse repository at this point
Copy the full SHA eaca5f8View commit details -
Rollup merge of rust-lang#53747 - GuillaumeGomez:rustdoc-fixes, r=Qui…
…etMisdreavus Rustdoc fixes Fixes rustdoc not scrolling to given lines and invalid unstable display: <img width="1440" alt="screen shot 2018-08-27 at 23 28 47" src="https://user-images.githubusercontent.com/3050060/44687252-06535e80-aa51-11e8-8512-d7d34d1cb963.png"> r? @QuietMisdreavus
Configuration menu - View commit details
-
Copy full SHA for 2e2980b - Browse repository at this point
Copy the full SHA 2e2980bView commit details -
Rollup merge of rust-lang#53753 - RalfJung:keep-stage, r=nikomatsakis
expand keep-stage --help text
Configuration menu - View commit details
-
Copy full SHA for ad9a001 - Browse repository at this point
Copy the full SHA ad9a001View commit details -
Rollup merge of rust-lang#53756 - dmerejkowsky:fix-comment, r=KodrAus
Fix typo in comment
Configuration menu - View commit details
-
Copy full SHA for 11fab7d - Browse repository at this point
Copy the full SHA 11fab7dView commit details -
Rollup merge of rust-lang#53768 - RalfJung:gitignore, r=nikomatsakis
move file-extension based .gitignore down to src/ Currently, it for example ignores `*.rlib` files in the repository root -- which I think is wrong; I sometimes get these files when I call rustc directly and I do want them cleaned up, not ignored. No such files are created during the normal build process.
Configuration menu - View commit details
-
Copy full SHA for c9862e2 - Browse repository at this point
Copy the full SHA c9862e2View commit details -
Rollup merge of rust-lang#53785 - tbu-:pr_comment, r=Mark-Simulacrum
Fix a comment in src/libcore/slice/mod.rs
Configuration menu - View commit details
-
Copy full SHA for 07fcb01 - Browse repository at this point
Copy the full SHA 07fcb01View commit details -
Rollup merge of rust-lang#53786 - frewsxcv:frewsxcv-bad-style, r=Mani…
…shearth Replace usages of 'bad_style' with 'nonstandard_style'. `bad_style` is being deprecated in favor of `nonstandard_style`: - rust-lang#41646
Configuration menu - View commit details
-
Copy full SHA for 78d5509 - Browse repository at this point
Copy the full SHA 78d5509View commit details -
Rollup merge of rust-lang#53806 - GuillaumeGomez:fix-ui-issues-foreig…
…n-type-impls, r=QuietMisdreavus Fix UI issues on Implementations on Foreign types Fixes rust-lang#53800. <img width="1440" alt="screen shot 2018-08-29 at 22 06 35" src="https://user-images.githubusercontent.com/3050060/44814733-e9986180-abdd-11e8-97e0-0e3c1816ca04.png"> r? @QuietMisdreavus
Configuration menu - View commit details
-
Copy full SHA for 6b1fffa - Browse repository at this point
Copy the full SHA 6b1fffaView commit details