-
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 6 pull requests #114565
Rollup of 6 pull requests #114565
Commits on Aug 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 55935df - Browse repository at this point
Copy the full SHA 55935dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 09c71a5 - Browse repository at this point
Copy the full SHA 09c71a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c59544 - Browse repository at this point
Copy the full SHA 0c59544View commit details -
Configuration menu - View commit details
-
Copy full SHA for efd54cc - Browse repository at this point
Copy the full SHA efd54ccView commit details -
Configuration menu - View commit details
-
Copy full SHA for 704aa56 - Browse repository at this point
Copy the full SHA 704aa56View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b9876b - Browse repository at this point
Copy the full SHA 2b9876bView commit details -
Remove FIXME about NLL diagnostic that is already improved
The FIXME was added in 46984 when the diagnostic message looked like this: // FIXME(rust-lang#46983): error message should be better &s.0 //~ ERROR free region `` does not outlive free region `'static` The message was improved in 90667 and now looks like this: &s.0 //~ ERROR lifetime may not live long enough but the FIXME was not removed. The issue 46983 about that diagnostics should be improved has been closed. We can remove the FIXME now.
Configuration menu - View commit details
-
Copy full SHA for 8a75209 - Browse repository at this point
Copy the full SHA 8a75209View commit details -
Rollup merge of rust-lang#114535 - klensy:windows-sys-0-42, r=compile…
…r-errors bump schannel, miow to drop windows-sys 0.42 Changes contains almost only of update to windows-sys 0.48 steffengy/schannel-rs@v0.1.21...v0.1.22 yoshuawuyts/miow@v0.5.0...v0.6.0
Configuration menu - View commit details
-
Copy full SHA for 22d142a - Browse repository at this point
Copy the full SHA 22d142aView commit details -
Rollup merge of rust-lang#114542 - RalfJung:const-prop-nonsense, r=co…
…mpiler-errors interpret: use ConstPropNonsense for more const-prop induced issues
Configuration menu - View commit details
-
Copy full SHA for 74dce18 - Browse repository at this point
Copy the full SHA 74dce18View commit details -
Rollup merge of rust-lang#114543 - RalfJung:test-96944, r=compiler-er…
…rors add tests for some fixed ConstProp ICEs Fixes rust-lang#96944 Fixes rust-lang#111353
Configuration menu - View commit details
-
Copy full SHA for d720f93 - Browse repository at this point
Copy the full SHA d720f93View commit details -
Rollup merge of rust-lang#114550 - dtolnay:globalalloc, r=compiler-er…
…rors Generate better function argument names in global_allocator expansion Generated code for `#[global_allocator] static ALLOCATOR: Allocator = Allocator;`— **Before:** ```rust const _: () = { #[rustc_std_internal_symbol] unsafe fn __rust_alloc(arg0: usize, arg1: usize) -> *mut u8 { ::core::alloc::GlobalAlloc::alloc( &ALLOCATOR, ::core::alloc::Layout::from_size_align_unchecked(arg0, arg1), ) } #[rustc_std_internal_symbol] unsafe fn __rust_dealloc(arg0: *mut u8, arg1: usize, arg2: usize) -> () { ::core::alloc::GlobalAlloc::dealloc( &ALLOCATOR, arg0, ::core::alloc::Layout::from_size_align_unchecked(arg1, arg2), ) } #[rustc_std_internal_symbol] unsafe fn __rust_realloc( arg0: *mut u8, arg1: usize, arg2: usize, arg3: usize, ) -> *mut u8 { ::core::alloc::GlobalAlloc::realloc( &ALLOCATOR, arg0, ::core::alloc::Layout::from_size_align_unchecked(arg1, arg2), arg3, ) } #[rustc_std_internal_symbol] unsafe fn __rust_alloc_zeroed(arg0: usize, arg1: usize) -> *mut u8 { ::core::alloc::GlobalAlloc::alloc_zeroed( &ALLOCATOR, ::core::alloc::Layout::from_size_align_unchecked(arg0, arg1), ) } }; ``` **After:** ```rust const _: () = { #[rustc_std_internal_symbol] unsafe fn __rust_alloc(size: usize, align: usize) -> *mut u8 { ::core::alloc::GlobalAlloc::alloc( &ALLOCATOR, ::core::alloc::Layout::from_size_align_unchecked(size, align), ) } #[rustc_std_internal_symbol] unsafe fn __rust_dealloc(ptr: *mut u8, size: usize, align: usize) -> () { ::core::alloc::GlobalAlloc::dealloc( &ALLOCATOR, ptr, ::core::alloc::Layout::from_size_align_unchecked(size, align), ) } #[rustc_std_internal_symbol] unsafe fn __rust_realloc( ptr: *mut u8, size: usize, align: usize, new_size: usize, ) -> *mut u8 { ::core::alloc::GlobalAlloc::realloc( &ALLOCATOR, ptr, ::core::alloc::Layout::from_size_align_unchecked(size, align), new_size, ) } #[rustc_std_internal_symbol] unsafe fn __rust_alloc_zeroed(size: usize, align: usize) -> *mut u8 { ::core::alloc::GlobalAlloc::alloc_zeroed( &ALLOCATOR, ::core::alloc::Layout::from_size_align_unchecked(size, align), ) } }; ```
Configuration menu - View commit details
-
Copy full SHA for 1ea9951 - Browse repository at this point
Copy the full SHA 1ea9951View commit details -
Rollup merge of rust-lang#114556 - Enselic:issue-numbers-enforced, r=…
…compiler-errors Issue numbers are enforced on active features; remove FIXME Since rust-lang#51090 tidy enforces that active features have an issue number, so remove the FIXME. This PR is part of rust-lang#44366 which is E-help-wanted.
Configuration menu - View commit details
-
Copy full SHA for 44479d1 - Browse repository at this point
Copy the full SHA 44479d1View commit details -
Rollup merge of rust-lang#114558 - Enselic:lifetime-diagnostic-fixed,…
… r=cjgillot Remove FIXME about NLL diagnostic that is already improved The FIXME was added in rust-lang#46984 when the diagnostic message looked like this: // FIXME(rust-lang#46983): error message should be better &s.0 //~ ERROR free region `` does not outlive free region `'static` The message was improved in rust-lang#90667 and now looks like this: &s.0 //~ ERROR lifetime may not live long enough but the FIXME was not removed. The issue rust-lang#46983 about that diagnostics should be improved has been closed. We can remove the FIXME now. (This PR was made for rust-lang#44366.)
Configuration menu - View commit details
-
Copy full SHA for f44f027 - Browse repository at this point
Copy the full SHA f44f027View commit details