-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 4 pull requests #92106
Rollup of 4 pull requests #92106
Commits on Dec 13, 2021
-
Remove
in_band_lifetimes
fromrustc_infer
This crate actually had a typo `'ctx` in one of its functions: ```diff -pub fn same_type_modulo_infer(a: Ty<'tcx>, b: Ty<'ctx>) -> bool { +pub fn same_type_modulo_infer<'tcx>(a: Ty<'tcx>, b: Ty<'tcx>) -> bool { ```
Configuration menu - View commit details
-
Copy full SHA for 3755240 - Browse repository at this point
Copy the full SHA 3755240View commit details
Commits on Dec 14, 2021
-
Configuration menu - View commit details
-
Copy full SHA for f0b7142 - Browse repository at this point
Copy the full SHA f0b7142View commit details
Commits on Dec 18, 2021
-
Explicitly set no ELF flags for .rustc section
For a data section, the object crate will set the SHF_ALLOC by default, which is exactly what we don't want. Explicitly set sh_flags to zero to avoid this.
Configuration menu - View commit details
-
Copy full SHA for 79d5309 - Browse repository at this point
Copy the full SHA 79d5309View commit details
Commits on Dec 19, 2021
-
Fix an ICE when lowering a float with missing exponent magnitude
Co-authored-by: Simonas Kazlauskas <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0003280 - Browse repository at this point
Copy the full SHA 0003280View commit details -
Rollup merge of rust-lang#91791 - terrarier2111:fix-float-ice, r=nagisa
Fix an ICE when lowering a float with missing exponent magnitude This fixes: rust-lang#91434
Configuration menu - View commit details
-
Copy full SHA for c088e50 - Browse repository at this point
Copy the full SHA c088e50View commit details -
Rollup merge of rust-lang#91878 - LegionMammal978:less-inband-infer, …
…r=Aaron1011 Remove `in_band_lifetimes` from `rustc_infer` See rust-lang#91867 for more information. This crate actually had a typo `'ctx` in one of its functions: ```diff -pub fn same_type_modulo_infer(a: Ty<'tcx>, b: Ty<'ctx>) -> bool { +pub fn same_type_modulo_infer<'tcx>(a: Ty<'tcx>, b: Ty<'tcx>) -> bool { ``` Also, I wasn't entirely sure about the lifetimes in `suggest_new_region_bound`: ```diff pub fn suggest_new_region_bound( - tcx: TyCtxt<'tcx>, + tcx: TyCtxt<'_>, err: &mut DiagnosticBuilder<'_>, fn_returns: Vec<&rustc_hir::Ty<'_>>, ``` Should all of those lifetimes really be distinct?
Configuration menu - View commit details
-
Copy full SHA for d576f7d - Browse repository at this point
Copy the full SHA d576f7dView commit details -
Rollup merge of rust-lang#91895 - pitaj:91867-monomorphize, r=Aaron1011
Remove `in_band_lifetimes` for `rustc_monomorphize` rust-lang#91867
Configuration menu - View commit details
-
Copy full SHA for fba0d04 - Browse repository at this point
Copy the full SHA fba0d04View commit details -
Rollup merge of rust-lang#92029 - nikic:section-flags-fix, r=davidtwco
Explicitly set no ELF flags for .rustc section For a data section, the object crate will set the SHF_ALLOC by default, which is exactly what we don't want. Explicitly set sh_flags to zero to avoid this. I checked with `objdump -h` that this produces the right flags for ELF. Fixes rust-lang#92013.
Configuration menu - View commit details
-
Copy full SHA for 9415c67 - Browse repository at this point
Copy the full SHA 9415c67View commit details