Uh oh!
There was an error while loading. Please reload this page.
New zeroed slice - #75171
Conversation
rust-highfive
commented
Aug 5, 2020
r? @sfackler (rust_highfive has picked a reviewer for you, use r? to override) |
amosonn
commented
Aug 5, 2020
r? @SimonSapin |
bors
commented
Aug 5, 2020
@amosonn: 🔑 Insufficient privileges: not in try users |
1 similar comment
bors
commented
Aug 5, 2020
@amosonn: 🔑 Insufficient privileges: not in try users |
b2eebb5 to
f75f492Comparebors
commented
Aug 5, 2020
☔ The latest upstream changes (presumably #75174) made this pull request unmergeable. Please resolve the merge conflicts. |
a41071d to
ab204c5CompareDylan-DPC-zz
commented
Aug 21, 2020
r? @Amanieu |
Uh oh!
There was an error while loading. Please reload this page.
Amanieu
commented
Aug 21, 2020
@bors try @rust-timer queue |
rust-timer
commented
Aug 21, 2020
Awaiting bors try build completion |
bors
commented
Aug 21, 2020
⌛ Trying commit ab204c5 with merge c7bc9915d37800e60ddf1d2cc573758c724395c3... |
Amanieu
commented
Aug 21, 2020
@bors try |
bors
commented
Aug 21, 2020
⌛ Trying commit 5aba816 with merge f3a9871a4972d9c4fe07f70e3e5aa63d6bdb6577... |
bors
commented
Aug 21, 2020
☀️ Try build successful - checks-actions, checks-azure |
rust-timer
commented
Aug 21, 2020
Queued f3a9871a4972d9c4fe07f70e3e5aa63d6bdb6577 with parent de521cb, future comparison URL. |
rust-timer
commented
Aug 21, 2020
Finished benchmarking try commit (f3a9871a4972d9c4fe07f70e3e5aa63d6bdb6577): comparison url. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. Please note that if the perf results are neutral, you should likely undo the rollup=never given below by specifying Importantly, though, if the results of this run are non-neutral do not roll this PR up -- it will mask other regressions or improvements in the roll up. @bors rollup=never |
Amanieu
commented
Aug 22, 2020
@bors r+ rollup- |
bors
commented
Aug 22, 2020
📌 Commit 5aba816 has been approved by |
bors
commented
Aug 22, 2020
bors
commented
Aug 22, 2020
☀️ Test successful - checks-actions, checks-azure |
Add to #63291 the methods
as suggested in #63291 (comment) .
Also optimize
{Rc, Arc}::new_zeroedto usealloc_zeroed, otherwise they are no more efficient than usingnew_uninitand zeroing the memory manually (which was the original implementation).