Skip to content

Commit 12b5bce

Browse files
committed
Auto merge of rust-lang#89968 - JohnTitor:rollup-z51n967, r=JohnTitor
Rollup of 7 pull requests Successful merges: - rust-lang#89507 (Add `#[repr(i8)]` to `Ordering`) - rust-lang#89849 (CI: Selecting the Xcode version no longer needed with the macos-11 runners.) - rust-lang#89886 (Update the wasi-libc built with the wasm32-wasi target) - rust-lang#89907 (Remove FIXME since there is nothing to be fixed) - rust-lang#89943 (clippy::complexity fixes) - rust-lang#89953 (Make Option::as_mut const) - rust-lang#89958 (Correct small typo) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 4e89811 + dc2e301 commit 12b5bce

File tree

15 files changed

+23
-43
lines changed

15 files changed

+23
-43
lines changed

.github/workflows/ci.yml

-10
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,6 @@ jobs:
9292
- name: install sccache
9393
run: src/ci/scripts/install-sccache.sh
9494
if: success() && !env.SKIP_JOB
95-
- name: select Xcode
96-
run: src/ci/scripts/select-xcode.sh
97-
if: success() && !env.SKIP_JOB
9895
- name: install clang
9996
run: src/ci/scripts/install-clang.sh
10097
if: success() && !env.SKIP_JOB
@@ -322,7 +319,6 @@ jobs:
322319
SCRIPT: "./x.py dist --stage 2"
323320
RUST_CONFIGURE_ARGS: "--build=x86_64-apple-darwin --host=aarch64-apple-darwin --target=aarch64-apple-darwin --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false"
324321
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
325-
SELECT_XCODE: /Applications/Xcode_12.2.app
326322
USE_XCODE_CLANG: 1
327323
MACOSX_DEPLOYMENT_TARGET: 11.0
328324
MACOSX_STD_DEPLOYMENT_TARGET: 11.0
@@ -467,9 +463,6 @@ jobs:
467463
- name: install sccache
468464
run: src/ci/scripts/install-sccache.sh
469465
if: success() && !env.SKIP_JOB
470-
- name: select Xcode
471-
run: src/ci/scripts/select-xcode.sh
472-
if: success() && !env.SKIP_JOB
473466
- name: install clang
474467
run: src/ci/scripts/install-clang.sh
475468
if: success() && !env.SKIP_JOB
@@ -580,9 +573,6 @@ jobs:
580573
- name: install sccache
581574
run: src/ci/scripts/install-sccache.sh
582575
if: success() && !env.SKIP_JOB
583-
- name: select Xcode
584-
run: src/ci/scripts/select-xcode.sh
585-
if: success() && !env.SKIP_JOB
586576
- name: install clang
587577
run: src/ci/scripts/install-clang.sh
588578
if: success() && !env.SKIP_JOB

compiler/rustc_attr/src/builtin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ impl IntType {
802802
/// Valid repr contents: any of the primitive integral type names (see
803803
/// `int_type_of_word`, below) to specify enum discriminant type; `C`, to use
804804
/// the same discriminant size that the corresponding C enum would or C
805-
/// structure layout, `packed` to remove padding, and `transparent` to elegate representation
805+
/// structure layout, `packed` to remove padding, and `transparent` to delegate representation
806806
/// concerns to the only non-ZST field.
807807
pub fn find_repr_attrs(sess: &Session, attr: &Attribute) -> Vec<ReprAttr> {
808808
use ReprAttr::*;

compiler/rustc_expand/src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ fn get_features(
171171
}
172172

173173
if let Some(allowed) = sess.opts.debugging_opts.allow_features.as_ref() {
174-
if allowed.iter().find(|&f| name.as_str() == *f).is_none() {
174+
if allowed.iter().all(|f| name.as_str() != *f) {
175175
struct_span_err!(
176176
span_handler,
177177
mi.span(),

compiler/rustc_middle/src/mir/interpret/allocation.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1004,13 +1004,13 @@ impl<Tag: Copy, Extra> Allocation<Tag, Extra> {
10041004
/// Checks that a range of bytes is initialized. If not, returns the `InvalidUninitBytes`
10051005
/// error which will report the first range of bytes which is uninitialized.
10061006
fn check_init(&self, range: AllocRange) -> AllocResult {
1007-
self.is_init(range).or_else(|idx_range| {
1008-
Err(AllocError::InvalidUninitBytes(Some(UninitBytesAccess {
1007+
self.is_init(range).map_err(|idx_range| {
1008+
AllocError::InvalidUninitBytes(Some(UninitBytesAccess {
10091009
access_offset: range.start,
10101010
access_size: range.size,
10111011
uninit_offset: idx_range.start,
10121012
uninit_size: idx_range.end - idx_range.start, // `Size` subtraction
1013-
})))
1013+
}))
10141014
})
10151015
}
10161016

compiler/rustc_resolve/src/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1837,7 +1837,7 @@ crate fn show_candidates(
18371837
.skip(1)
18381838
.all(|(_, descr, _)| descr == descr_first)
18391839
{
1840-
format!("{}", descr_first)
1840+
descr_first.to_string()
18411841
} else {
18421842
"item".to_string()
18431843
};

library/core/src/cmp.rs

+1
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ pub struct AssertParamIsEq<T: Eq + ?Sized> {
323323
/// ```
324324
#[derive(Clone, Copy, PartialEq, Debug, Hash)]
325325
#[stable(feature = "rust1", since = "1.0.0")]
326+
#[repr(i8)]
326327
pub enum Ordering {
327328
/// An ordering where a compared value is less than another.
328329
#[stable(feature = "rust1", since = "1.0.0")]

library/core/src/option.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,8 @@ impl<T> Option<T> {
646646
/// ```
647647
#[inline]
648648
#[stable(feature = "rust1", since = "1.0.0")]
649-
pub fn as_mut(&mut self) -> Option<&mut T> {
649+
#[rustc_const_unstable(feature = "const_option", issue = "67441")]
650+
pub const fn as_mut(&mut self) -> Option<&mut T> {
650651
match *self {
651652
Some(ref mut x) => Some(x),
652653
None => None,

library/core/tests/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#![feature(const_assume)]
1111
#![feature(const_cell_into_inner)]
1212
#![feature(const_maybe_uninit_assume_init)]
13+
#![cfg_attr(bootstrap, feature(const_panic))]
1314
#![feature(const_ptr_read)]
1415
#![feature(const_ptr_write)]
1516
#![feature(const_ptr_offset)]

library/core/tests/option.rs

+8
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,14 @@ const fn option_const_mut() {
380380

381381
let _take = option.take();
382382
let _replace = option.replace(42);
383+
384+
{
385+
let as_mut = option.as_mut();
386+
match as_mut {
387+
Some(v) => *v = 32,
388+
None => unreachable!(),
389+
}
390+
}
383391
}
384392

385393
#[test]

src/ci/docker/host-x86_64/dist-various-2/build-wasi-toolchain.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export PATH=`pwd`/clang+llvm-11.0.1-x86_64-linux-gnu-ubuntu-16.04/bin:$PATH
1010
git clone https://github.com/WebAssembly/wasi-libc
1111

1212
cd wasi-libc
13-
git reset --hard 58795582905e08fa7748846c1971b4ab911d1e16
13+
git reset --hard ad5133410f66b93a2381db5b542aad5e0964db96
1414
make -j$(nproc) INSTALL_DIR=/wasm32-wasi install
1515

1616
cd ..

src/ci/github-actions/ci.yml

-5
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,6 @@ x--expand-yaml-anchors--remove:
153153
run: src/ci/scripts/install-sccache.sh
154154
<<: *step
155155

156-
- name: select Xcode
157-
run: src/ci/scripts/select-xcode.sh
158-
<<: *step
159-
160156
- name: install clang
161157
run: src/ci/scripts/install-clang.sh
162158
<<: *step
@@ -498,7 +494,6 @@ jobs:
498494
--set rust.jemalloc
499495
--set llvm.ninja=false
500496
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
501-
SELECT_XCODE: /Applications/Xcode_12.2.app
502497
USE_XCODE_CLANG: 1
503498
MACOSX_DEPLOYMENT_TARGET: 11.0
504499
MACOSX_STD_DEPLOYMENT_TARGET: 11.0

src/ci/scripts/select-xcode.sh

-13
This file was deleted.

src/librustdoc/html/markdown.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ crate fn find_testable_code<T: doctest::Tester>(
765765
// If there are characters between the preceding line ending and
766766
// this code block, `str::lines` will return an additional line,
767767
// which we subtract here.
768-
if nb_lines != 0 && !&doc[prev_offset..offset.start].ends_with("\n") {
768+
if nb_lines != 0 && !&doc[prev_offset..offset.start].ends_with('\n') {
769769
nb_lines -= 1;
770770
}
771771
let line = tests.get_line() + nb_lines + 1;

src/librustdoc/visit_ast.rs

+3-5
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,9 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
113113
.unwrap_or(&[])
114114
.iter()
115115
.filter_map(|attr| {
116-
Some(
117-
Cfg::parse(attr.meta_item()?)
118-
.map_err(|e| self.cx.sess().diagnostic().span_err(e.span, e.msg))
119-
.ok()?,
120-
)
116+
Cfg::parse(attr.meta_item()?)
117+
.map_err(|e| self.cx.sess().diagnostic().span_err(e.span, e.msg))
118+
.ok()
121119
})
122120
.collect::<Vec<_>>()
123121
})

src/test/rustdoc-ui/ambiguous-inherent-assoc-ty.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ impl Struct {
1111
pub const AssocConst: Self::AssocTy = 42;
1212
//~^ ERROR ambiguous associated type
1313
//~| HELP use fully-qualified syntax
14-
// FIXME: for some reason, the error is shown twice with rustdoc but only once with rustc
1514
//~| ERROR ambiguous associated type
1615
//~| HELP use fully-qualified syntax
1716
}

0 commit comments

Comments
 (0)