-
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 10 pull requests #78383
Rollup of 10 pull requests #78383
Commits on Oct 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 95aac44 - Browse repository at this point
Copy the full SHA 95aac44View commit details
Commits on Oct 20, 2020
-
Initialize tracing subscriber in compiletest tool
The logging in compiletest was migrated from log crate to a tracing, but the initialization code was never changed, so logging is non-functional. Initialize tracing subscriber using default settings.
Configuration menu - View commit details
-
Copy full SHA for 08d5e96 - Browse repository at this point
Copy the full SHA 08d5e96View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ec4d82 - Browse repository at this point
Copy the full SHA 2ec4d82View commit details -
Configuration menu - View commit details
-
Copy full SHA for 95cbfb1 - Browse repository at this point
Copy the full SHA 95cbfb1View commit details
Commits on Oct 22, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 57d01a9 - Browse repository at this point
Copy the full SHA 57d01a9View commit details
Commits on Oct 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for d0d0e78 - Browse repository at this point
Copy the full SHA d0d0e78View commit details -
Configuration menu - View commit details
-
Copy full SHA for db15596 - Browse repository at this point
Copy the full SHA db15596View commit details -
Configuration menu - View commit details
-
Copy full SHA for 86df903 - Browse repository at this point
Copy the full SHA 86df903View commit details -
Configuration menu - View commit details
-
Copy full SHA for a4ee3ca - Browse repository at this point
Copy the full SHA a4ee3caView commit details -
Configuration menu - View commit details
-
Copy full SHA for 671d7c4 - Browse repository at this point
Copy the full SHA 671d7c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 62ba365 - Browse repository at this point
Copy the full SHA 62ba365View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a0227b - Browse repository at this point
Copy the full SHA 3a0227bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1829b4a - Browse repository at this point
Copy the full SHA 1829b4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for c548511 - Browse repository at this point
Copy the full SHA c548511View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5d7443 - Browse repository at this point
Copy the full SHA f5d7443View commit details
Commits on Oct 24, 2020
-
#[deny(unsafe_op_in_unsafe_fn)]
in sys/wasmchansuke committedOct 24, 2020 Configuration menu - View commit details
-
Copy full SHA for d413bb6 - Browse repository at this point
Copy the full SHA d413bb6View commit details -
Add some description for (malloc/calloc/free/realloc)
chansuke committedOct 24, 2020 Configuration menu - View commit details
-
Copy full SHA for eed4510 - Browse repository at this point
Copy the full SHA eed4510View commit details -
chansuke committed
Oct 24, 2020 Configuration menu - View commit details
-
Copy full SHA for de87ae7 - Browse repository at this point
Copy the full SHA de87ae7View commit details -
Fix unsafe operation of wasm32::memory_atomic_notify
chansuke committedOct 24, 2020 Configuration menu - View commit details
-
Copy full SHA for d147f78 - Browse repository at this point
Copy the full SHA d147f78View commit details -
Remove unnecessary unsafe block from condvar_atomics & mutex_atomics
chansuke committedOct 24, 2020 Configuration menu - View commit details
-
Copy full SHA for d37b8cf - Browse repository at this point
Copy the full SHA d37b8cfView commit details
Commits on Oct 25, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 7b4c397 - Browse repository at this point
Copy the full SHA 7b4c397View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ec396e - Browse repository at this point
Copy the full SHA 4ec396eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 17a4c43 - Browse repository at this point
Copy the full SHA 17a4c43View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2df9277 - Browse repository at this point
Copy the full SHA 2df9277View commit details -
Tweak
if let
suggestion to be more liberal with suggestion and to n……ot ICE Fix rust-lang#77218. Fix rust-lang#77238.
Configuration menu - View commit details
-
Copy full SHA for cabf6d0 - Browse repository at this point
Copy the full SHA cabf6d0View commit details
Commits on Oct 26, 2020
-
Rollup merge of rust-lang#74477 - chansuke:sys-wasm-unsafe-op-in-unsa…
…fe-fn, r=Mark-Simulacrum `#[deny(unsafe_op_in_unsafe_fn)]` in sys/wasm This is part of rust-lang#73904. This encloses unsafe operations in unsafe fn in `libstd/sys/wasm`. @rustbot modify labels: F-unsafe-block-in-unsafe-fn
Configuration menu - View commit details
-
Copy full SHA for b2a2567 - Browse repository at this point
Copy the full SHA b2a2567View commit details -
Rollup merge of rust-lang#77283 - estebank:if-let-sugg, r=Mark-Simula…
…crum Tweak `if let` suggestion to be more liberal with suggestion and to not ICE Fix rust-lang#77218. Fix rust-lang#77238.
Configuration menu - View commit details
-
Copy full SHA for b6fb183 - Browse repository at this point
Copy the full SHA b6fb183View commit details -
Rollup merge of rust-lang#77836 - RalfJung:transmute_copy, r=Mark-Sim…
…ulacrum transmute_copy: explain that alignment is handled correctly The doc comment currently is somewhat misleading because if it actually transmuted `&T` to `&U`, a higher-aligned `U` would be problematic.
Configuration menu - View commit details
-
Copy full SHA for 7c7f94b - Browse repository at this point
Copy the full SHA 7c7f94bView commit details -
Rollup merge of rust-lang#78104 - ssomers:btree_root_redux, r=Mark-Si…
…mulacrum BTreeMap: ban BoxedNode from Root `NodeRef<marker::Owned, …>` already exists as a representation of root nodes, and it makes more sense to alias `Root` to that than to reuse the space-efficient `BoxedNode` that is oblivious to height, where height is required. r? @Mark-Simulacrum
Configuration menu - View commit details
-
Copy full SHA for f69c75f - Browse repository at this point
Copy the full SHA f69c75fView commit details -
Rollup merge of rust-lang#78137 - tmiasko:compiletest-tracing, r=Mark…
…-Simulacrum Initialize tracing subscriber in compiletest tool The logging in compiletest was migrated from log crate to a tracing, but the initialization code was never changed, so logging is non-functional. Initialize tracing subscriber using default settings.
Configuration menu - View commit details
-
Copy full SHA for 0b1b1b5 - Browse repository at this point
Copy the full SHA 0b1b1b5View commit details -
Rollup merge of rust-lang#78161 - jonas-schievink:irlo-issue-link, r=…
…Mark-Simulacrum Add issue template link to IRLO
Configuration menu - View commit details
-
Copy full SHA for d244fde - Browse repository at this point
Copy the full SHA d244fdeView commit details -
Rollup merge of rust-lang#78214 - estebank:match-semicolon, r=oli-obk
Tweak match arm semicolon removal suggestion to account for futures * Tweak and extend "use `.await`" suggestions * Suggest removal of semicolon on prior match arm * Account for `impl Future` when suggesting semicolon removal * Silence some errors when encountering `await foo()?` as can't be certain what the intent was *Thanks to https://twitter.com/a_hoverbear/status/1318960787105353728 for pointing this out!*
Configuration menu - View commit details
-
Copy full SHA for c27b862 - Browse repository at this point
Copy the full SHA c27b862View commit details -
Rollup merge of rust-lang#78227 - SergioBenitez:test-stdout-threading…
…, r=m-ou-se Capture output from threads spawned in tests This is revival of rust-lang#75172. Original text: > Fixes rust-lang#42474. > > r? `@dtolnay` since you expressed interest in this, but feel free to redirect if you aren't the right person anymore. --- Closes rust-lang#75172.
Configuration menu - View commit details
-
Copy full SHA for 489c4b0 - Browse repository at this point
Copy the full SHA 489c4b0View commit details -
Rollup merge of rust-lang#78247 - simonvandel:fix-78192, r=oli-obk
Fix rust-lang#78192 Check which places are marked dead. Fixes rust-lang#78192
Configuration menu - View commit details
-
Copy full SHA for b829cef - Browse repository at this point
Copy the full SHA b829cefView commit details -
Rollup merge of rust-lang#78268 - JohnTitor:issue-78262, r=estebank
Do not try to report on closures to avoid ICE Fixes rust-lang#78262
Configuration menu - View commit details
-
Copy full SHA for 2e741a8 - Browse repository at this point
Copy the full SHA 2e741a8View commit details