-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 11 pull requests #65559
Rollup of 11 pull requests #65559
Commits on Oct 8, 2019
-
Disable Go and OCaml bindings when building LLVM
Instead of instaling OCaml bindings in a location where installation will not fail, don't build them in the first place.
Configuration menu - View commit details
-
Copy full SHA for 3b0fd82 - Browse repository at this point
Copy the full SHA 3b0fd82View commit details
Commits on Oct 11, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 88b5e94 - Browse repository at this point
Copy the full SHA 88b5e94View commit details
Commits on Oct 17, 2019
-
show up some extra info when t!() fails
Guanqun Lu committedOct 17, 2019 Configuration menu - View commit details
-
Copy full SHA for c716be6 - Browse repository at this point
Copy the full SHA c716be6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 83e97c6 - Browse repository at this point
Copy the full SHA 83e97c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for a4d9492 - Browse repository at this point
Copy the full SHA a4d9492View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5fe88ab - Browse repository at this point
Copy the full SHA 5fe88abView commit details -
Configuration menu - View commit details
-
Copy full SHA for ad6ce46 - Browse repository at this point
Copy the full SHA ad6ce46View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e6efe4 - Browse repository at this point
Copy the full SHA 4e6efe4View commit details -
Co-Authored-By: Mark Rousskov <mark.simulacrum@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5487994 - Browse repository at this point
Copy the full SHA 5487994View commit details -
Configuration menu - View commit details
-
Copy full SHA for c0b7e76 - Browse repository at this point
Copy the full SHA c0b7e76View commit details -
doc: make BitSet intro more short
Also, add a link to the growable type
Configuration menu - View commit details
-
Copy full SHA for c9b27d1 - Browse repository at this point
Copy the full SHA c9b27d1View commit details
Commits on Oct 18, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 5de9cb0 - Browse repository at this point
Copy the full SHA 5de9cb0View commit details -
Configuration menu - View commit details
-
Copy full SHA for e069e9c - Browse repository at this point
Copy the full SHA e069e9cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 591cc9a - Browse repository at this point
Copy the full SHA 591cc9aView commit details -
Configuration menu - View commit details
-
Copy full SHA for bb7d6d1 - Browse repository at this point
Copy the full SHA bb7d6d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for e3e9951 - Browse repository at this point
Copy the full SHA e3e9951View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0fc063f - Browse repository at this point
Copy the full SHA 0fc063fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 39c9ed3 - Browse repository at this point
Copy the full SHA 39c9ed3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b2e35b - Browse repository at this point
Copy the full SHA 2b2e35bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f2a110 - Browse repository at this point
Copy the full SHA 4f2a110View commit details -
Setup a different visit place set of methods for mutable and immutabl…
…e visitors In particular, use a blank visit_place for mutable visitor to be sure, non modified visitors are not trying to mutating place.
Configuration menu - View commit details
-
Copy full SHA for 7fa3425 - Browse repository at this point
Copy the full SHA 7fa3425View commit details -
Configuration menu - View commit details
-
Copy full SHA for d53fc9c - Browse repository at this point
Copy the full SHA d53fc9cView commit details -
Fix left/right shift typo in wrapping rotate docs
This makes the note similar to the one found on rotate functions for primitive types like i32/u32.
Configuration menu - View commit details
-
Copy full SHA for 769e75b - Browse repository at this point
Copy the full SHA 769e75bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9617014 - Browse repository at this point
Copy the full SHA 9617014View commit details -
Use dedicated method for getting the type size
Co-Authored-By: Nikita Popov <nikita.ppv@googlemail.com>
Configuration menu - View commit details
-
Copy full SHA for 4a51801 - Browse repository at this point
Copy the full SHA 4a51801View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94a6d4b - Browse repository at this point
Copy the full SHA 94a6d4bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4834996 - Browse repository at this point
Copy the full SHA 4834996View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c9d889 - Browse repository at this point
Copy the full SHA 1c9d889View commit details -
Rollup merge of rust-lang#63810 - oli-obk:const_offset_from, r=RalfJu…
…ng,nikic Make <*const/mut T>::offset_from `const fn` This reenables offset_of cc @mjbshaw after rust-lang#63075 broke it
Configuration menu - View commit details
-
Copy full SHA for 58b17d5 - Browse repository at this point
Copy the full SHA 58b17d5View commit details -
Rollup merge of rust-lang#65197 - spastorino:place-mut-visitor-adjust…
…s2, r=oli-obk Prepare `MutVisitor`s to handle interned projections The following are all the files where mir's `MutVisitor` is implemented. The `-` there stands for no changes, `visit_place` wasn't making any change on `Place`s. `x` stands for this file was changed to make `visit_place` do whatever it was doing with the base but avoid modifying the projection, instead just create a new one and assign to it. ``` [-] src/librustc_mir/transform/no_landing_pads.rs [x] src/librustc_mir/transform/promote_consts.rs [x] src/librustc_mir/transform/generator.rs [x] src/librustc_mir/transform/erase_regions.rs [-] src/librustc_mir/transform/instcombine.rs [x] src/librustc_mir/transform/inline.rs [x] src/librustc_mir/transform/simplify.rs [x] src/librustc_mir/util/def_use.rs [-] src/librustc_mir/transform/const_prop.rs [-] src/librustc_mir/transform/cleanup_post_borrowck.rs [x] src/librustc_mir/borrow_check/nll/renumber.rs [-] src/librustc_mir/transform/copy_prop.rs ``` There is some code repetition, just created the PR so we can start discussing it. /cc @oli-obk @nikomatsakis
Configuration menu - View commit details
-
Copy full SHA for 33197c7 - Browse repository at this point
Copy the full SHA 33197c7View commit details -
Rollup merge of rust-lang#65201 - tmiasko:no-bindings, r=rkruppe
Disable Go and OCaml bindings when building LLVM Instead of instaling OCaml bindings in a location where installation will not fail, don't build them in the first place.
Configuration menu - View commit details
-
Copy full SHA for 1e9fd2b - Browse repository at this point
Copy the full SHA 1e9fd2bView commit details -
Rollup merge of rust-lang#65496 - tspiteri:euc-div-panic, r=KodrAus
properly document panics in div_euclid and rem_euclid For signed numbers, document that `div_euclid` and `rem_euclid` panic not just when `rhs` is 0, but also when the division overflows. For unsigned numbers, document that `div_euclid` and `rem_euclid` panic when `rhs` is 0.
Configuration menu - View commit details
-
Copy full SHA for ea6d132 - Browse repository at this point
Copy the full SHA ea6d132View commit details -
Rollup merge of rust-lang#65508 - rust-lang:llvm-icebreakers-ping-1, …
…r=simulacrum add option to ping llvm ice-breakers to triagebot
Configuration menu - View commit details
-
Copy full SHA for 28386e6 - Browse repository at this point
Copy the full SHA 28386e6View commit details -
Rollup merge of rust-lang#65511 - Xanewok:sa-nest-in-impls, r=pnkfelix
save-analysis: Nest tables when processing impl block definitions Similar to rust-lang#65353 (which this PR should've been a part of), however in this case we didn't previously nest the tables when processing trait paths in impl block declarations. Closes rust-lang#65411
Configuration menu - View commit details
-
Copy full SHA for d08536c - Browse repository at this point
Copy the full SHA d08536cView commit details -
Rollup merge of rust-lang#65513 - RalfJung:fmt, r=Mark-Simulacrum
reorder fmt docs for more clarity I adjusted these docs in rust-lang#65332 but wasn't happy with the result when seeing it in rustdoc. So this reorders the subsections in the "Formatting Parameters" section to be more logical (subsections that reference `width` come after the `width` subsection) and they also all have examples now.
Configuration menu - View commit details
-
Copy full SHA for 835a359 - Browse repository at this point
Copy the full SHA 835a359View commit details -
Rollup merge of rust-lang#65532 - tshepang:shorten-intro, r=Dylan-DPC
doc: make BitSet intro more short Also, add a link to the growable type
Configuration menu - View commit details
-
Copy full SHA for c4f5203 - Browse repository at this point
Copy the full SHA c4f5203View commit details -
Rollup merge of rust-lang#65540 - guanqun:extend-t-macro, r=nikomatsakis
show up some extra info when t!() fails
Configuration menu - View commit details
-
Copy full SHA for b85d26a - Browse repository at this point
Copy the full SHA b85d26aView commit details -
Rollup merge of rust-lang#65549 - t-rapp:tr-wrapping-rotate-docs, r=j…
…onas-schievink Fix left/right shift typo in wrapping rotate docs This makes the note similar to the one found on rotate functions for primitive types like i32/u32.
Configuration menu - View commit details
-
Copy full SHA for f8663c4 - Browse repository at this point
Copy the full SHA f8663c4View commit details -
Rollup merge of rust-lang#65552 - JohnTitor:use-bitwise-not, r=Dylan-DPC
Clarify diagnostics when using `~` as a unary op It seems we prefer `bitwise not` to `bitwise negation`. Fixes rust-lang#57239 r? @estebank
Configuration menu - View commit details
-
Copy full SHA for 4c317fb - Browse repository at this point
Copy the full SHA 4c317fbView commit details