Skip to content
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 8 pull requests #66571

Merged
merged 32 commits into from
Nov 20, 2019
Merged
Changes from 2 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ea9519b
Update Source Code Pro and include italics
tspiteri Oct 21, 2019
143fb43
Tweak VarLenSlice subtraction
Nadrieril Nov 6, 2019
c00ecfa
Add some tests
Nadrieril Nov 16, 2019
d93c1b3
Introduce new FixedLenSlice constructor
Nadrieril Nov 16, 2019
5b420a9
Add regression test for issue 53820
Nadrieril Nov 16, 2019
ce7a579
rustc_plugin: Remove the compatibility shim
petrochenkov Nov 16, 2019
7f49f7b
Rename directory `rustc_plugin` -> `rustc_plugin_impl`
petrochenkov Nov 16, 2019
d0cfef3
Unify the various slice constructors
Nadrieril Nov 17, 2019
54e97e8
Factor out slice constructor struct and simplify
Nadrieril Nov 17, 2019
daa117e
Small improvement to exhaustiveness diagnostics
Nadrieril Nov 17, 2019
bd0e3cc
Store SliceKinds directly when subtracting
Nadrieril Nov 17, 2019
7f5e044
`ConstantValue` is the only other ctor allowed when subtracting from …
Nadrieril Nov 17, 2019
2079ae3
Update src/test/ui/pattern/issue-53820-slice-pattern-large-array.rs
Nadrieril Nov 18, 2019
1425ae1
Tweak diagnostics code
Nadrieril Nov 18, 2019
aae7630
Add more context to `async fn` trait error. Suggest `async-trait`.
Oct 29, 2019
a767877
Reword help and add test
estebank Nov 18, 2019
a5d624d
Generate DWARF address ranges for faster lookups
cuviper Nov 18, 2019
e565329
Add error code documentation
estebank Nov 18, 2019
303d2f2
Remove duplicate function
aradzie Nov 19, 2019
ca42c25
[RISCV] Disable Atomics on all Non-A RISC-V targets
lenary Nov 19, 2019
846f5e6
Update E0706.md
Dylan-DPC Nov 19, 2019
4c2f1c8
Mark -Zgenerate-arange-section as TRACKED
cuviper Nov 19, 2019
a079159
Remove desugared `async-trait` example
estebank Nov 19, 2019
ab6cb01
HermitCore support is moved to sys/hermit, remove obsolete statement …
stlankes Nov 19, 2019
423137b
Rollup merge of #65665 - tspiteri:italic-and-update-SourceCodePro, r=…
Centril Nov 20, 2019
3ef2384
Rollup merge of #66478 - petrochenkov:rmplugin, r=davidtwco
Centril Nov 20, 2019
2d6e376
Rollup merge of #66497 - Nadrieril:fix-53820, r=varkor
Centril Nov 20, 2019
0a0d07a
Rollup merge of #66526 - estebank:async-fn-trait-information, r=Centril
Centril Nov 20, 2019
1346557
Rollup merge of #66532 - cuviper:dwarf-aranges, r=michaelwoerister
Centril Nov 20, 2019
4997604
Rollup merge of #66546 - aradzie:remove_duplicate_function, r=Dylan-DPC
Centril Nov 20, 2019
fff8ae1
Rollup merge of #66548 - lenary:riscv/disable-atomics-non-a, r=alexcr…
Centril Nov 20, 2019
ebd0ef9
Rollup merge of #66553 - hermitcore:hermit, r=rkruppe
Centril Nov 20, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libstd/sys/unix/fast_thread_local.rs
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
// fallback implementation to use as well.
//
// Due to rust-lang/rust#18804, make sure this is not generic!
#[cfg(any(target_os = "linux", target_os = "fuchsia", target_os = "hermit", target_os = "redox",
#[cfg(any(target_os = "linux", target_os = "fuchsia", target_os = "redox",
target_os = "emscripten"))]
pub unsafe fn register_dtor(t: *mut u8, dtor: unsafe extern fn(*mut u8)) {
use crate::mem;