Skip to content

Commit 81e754c

Browse files
committed
Auto merge of #75070 - Manishearth:rollup-2kgcaw5, r=Manishearth
Rollup of 5 pull requests Successful merges: - #74980 (pprust: adjust mixed comment printing and add regression test for #74745) - #75009 (Document the discrepancy in the mask type for _mm_shuffle_ps) - #75031 (Do not trigger `unused_{braces,parens}` lints with `yield`) - #75059 (fix typos) - #75064 (compiletest: Support ignoring tests requiring missing LLVM components) Failed merges: r? @ghost
2 parents f042d74 + 0bf2dcf commit 81e754c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+191
-56
lines changed

library/alloc/src/rc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2101,7 +2101,7 @@ impl<T: ?Sized> Unpin for Rc<T> {}
21012101
///
21022102
/// - This function is safe for any argument if `T` is sized, and
21032103
/// - if `T` is unsized, the pointer must have appropriate pointer metadata
2104-
/// aquired from the real instance that you are getting this offset for.
2104+
/// acquired from the real instance that you are getting this offset for.
21052105
unsafe fn data_offset<T: ?Sized>(ptr: *const T) -> isize {
21062106
// Align the unsized value to the end of the `RcBox`.
21072107
// Because it is ?Sized, it will always be the last field in memory.

library/alloc/src/sync.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2255,7 +2255,7 @@ impl<T: ?Sized> Unpin for Arc<T> {}
22552255
///
22562256
/// - This function is safe for any argument if `T` is sized, and
22572257
/// - if `T` is unsized, the pointer must have appropriate pointer metadata
2258-
/// aquired from the real instance that you are getting this offset for.
2258+
/// acquired from the real instance that you are getting this offset for.
22592259
unsafe fn data_offset<T: ?Sized>(ptr: *const T) -> isize {
22602260
// Align the unsized value to the end of the `ArcInner`.
22612261
// Because it is `?Sized`, it will always be the last field in memory.

library/alloc/tests/boxed.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fn box_clone_and_clone_from_equivalence() {
3737
/// This test might give a false positive in case the box realocates, but the alocator keeps the
3838
/// original pointer.
3939
///
40-
/// On the other hand it won't give a false negative, if it fails than the memory was definitly not
40+
/// On the other hand it won't give a false negative, if it fails than the memory was definitely not
4141
/// reused
4242
#[test]
4343
fn box_clone_from_ptr_stability() {

library/std/src/alloc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ unsafe impl AllocRef for System {
189189
ReallocPlacement::MayMove if layout.size() == 0 => {
190190
let new_layout =
191191
// SAFETY: The new size and layout alignement guarantees
192-
// are transfered to the caller (they come from parameters).
192+
// are transferred to the caller (they come from parameters).
193193
//
194194
// See the preconditions for `Layout::from_size_align` to
195195
// see what must be checked.
@@ -254,7 +254,7 @@ unsafe impl AllocRef for System {
254254
//
255255
// See `GlobalAlloc::realloc` for more informations about the
256256
// guarantees expected by this method. `ptr`, `layout` and
257-
// `new_size` are parameters and the responsability for their
257+
// `new_size` are parameters and the responsibility for their
258258
// correctness is left to the caller.
259259
//
260260
// `realloc` probably checks for `new_size < size` or something

library/std/src/keyword_docs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1363,7 +1363,7 @@ mod self_upper_keyword {}
13631363
///
13641364
/// let r1 = &FOO as *const _;
13651365
/// let r2 = &FOO as *const _;
1366-
/// // With a strictly read-only static, references will have the same adress
1366+
/// // With a strictly read-only static, references will have the same address
13671367
/// assert_eq!(r1, r2);
13681368
/// // A static item can be used just like a variable in many cases
13691369
/// println!("{:?}", FOO);

library/std/src/sync/once.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
// see the changes to drop the `Waiter` struct correctly.
8282
// * There is one place where the two atomics `Once.state_and_queue` and
8383
// `Waiter.signaled` come together, and might be reordered by the compiler or
84-
// processor. Because both use Aquire ordering such a reordering is not
84+
// processor. Because both use Acquire ordering such a reordering is not
8585
// allowed, so no need for SeqCst.
8686

8787
use crate::cell::Cell;

library/stdarch

src/bootstrap/test.rs

+15-15
Original file line numberDiff line numberDiff line change
@@ -1158,13 +1158,19 @@ impl Step for Compiletest {
11581158
cmd.arg("--quiet");
11591159
}
11601160

1161+
let mut llvm_components_passed = false;
1162+
let mut copts_passed = false;
11611163
if builder.config.llvm_enabled() {
11621164
let llvm_config = builder.ensure(native::Llvm { target: builder.config.build });
11631165
if !builder.config.dry_run {
11641166
let llvm_version = output(Command::new(&llvm_config).arg("--version"));
1167+
let llvm_components = output(Command::new(&llvm_config).arg("--components"));
11651168
// Remove trailing newline from llvm-config output.
1166-
let llvm_version = llvm_version.trim_end();
1167-
cmd.arg("--llvm-version").arg(llvm_version);
1169+
cmd.arg("--llvm-version")
1170+
.arg(llvm_version.trim())
1171+
.arg("--llvm-components")
1172+
.arg(llvm_components.trim());
1173+
llvm_components_passed = true;
11681174
}
11691175
if !builder.is_rust_llvm(target) {
11701176
cmd.arg("--system-llvm");
@@ -1182,15 +1188,13 @@ impl Step for Compiletest {
11821188
// Only pass correct values for these flags for the `run-make` suite as it
11831189
// requires that a C++ compiler was configured which isn't always the case.
11841190
if !builder.config.dry_run && suite == "run-make-fulldeps" {
1185-
let llvm_components = output(Command::new(&llvm_config).arg("--components"));
11861191
cmd.arg("--cc")
11871192
.arg(builder.cc(target))
11881193
.arg("--cxx")
11891194
.arg(builder.cxx(target).unwrap())
11901195
.arg("--cflags")
1191-
.arg(builder.cflags(target, GitRepo::Rustc).join(" "))
1192-
.arg("--llvm-components")
1193-
.arg(llvm_components.trim());
1196+
.arg(builder.cflags(target, GitRepo::Rustc).join(" "));
1197+
copts_passed = true;
11941198
if let Some(ar) = builder.ar(target) {
11951199
cmd.arg("--ar").arg(ar);
11961200
}
@@ -1220,15 +1224,11 @@ impl Step for Compiletest {
12201224
}
12211225
}
12221226

1223-
if suite != "run-make-fulldeps" {
1224-
cmd.arg("--cc")
1225-
.arg("")
1226-
.arg("--cxx")
1227-
.arg("")
1228-
.arg("--cflags")
1229-
.arg("")
1230-
.arg("--llvm-components")
1231-
.arg("");
1227+
if !llvm_components_passed {
1228+
cmd.arg("--llvm-components").arg("");
1229+
}
1230+
if !copts_passed {
1231+
cmd.arg("--cc").arg("").arg("--cxx").arg("").arg("--cflags").arg("");
12321232
}
12331233

12341234
if builder.remote_tested(target) {

src/librustc_ast_pretty/pprust.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,9 @@ pub trait PrintState<'a>: std::ops::Deref<Target = pp::Printer> + std::ops::Dere
450450
fn print_comment(&mut self, cmnt: &comments::Comment) {
451451
match cmnt.style {
452452
comments::Mixed => {
453-
self.zerobreak();
453+
if !self.is_beginning_of_line() {
454+
self.zerobreak();
455+
}
454456
if let Some((last, lines)) = cmnt.lines.split_last() {
455457
self.ibox(0);
456458

src/librustc_infer/infer/combine.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,15 +166,15 @@ impl<'infcx, 'tcx> InferCtxt<'infcx, 'tcx> {
166166
return self.unify_const_variable(!a_is_expected, vid, a);
167167
}
168168
(ty::ConstKind::Unevaluated(..), _) if self.tcx.lazy_normalization() => {
169-
// FIXME(#59490): Need to remove the leak check to accomodate
169+
// FIXME(#59490): Need to remove the leak check to accommodate
170170
// escaping bound variables here.
171171
if !a.has_escaping_bound_vars() && !b.has_escaping_bound_vars() {
172172
relation.const_equate_obligation(a, b);
173173
}
174174
return Ok(b);
175175
}
176176
(_, ty::ConstKind::Unevaluated(..)) if self.tcx.lazy_normalization() => {
177-
// FIXME(#59490): Need to remove the leak check to accomodate
177+
// FIXME(#59490): Need to remove the leak check to accommodate
178178
// escaping bound variables here.
179179
if !a.has_escaping_bound_vars() && !b.has_escaping_bound_vars() {
180180
relation.const_equate_obligation(a, b);

src/librustc_infer/infer/error_reporting/nice_region_error/static_impl_trait.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
195195
}
196196
}
197197
if let (Some(ident), true) = (override_error_code, fn_returns.is_empty()) {
198-
// Provide a more targetted error code and description.
198+
// Provide a more targeted error code and description.
199199
err.code(rustc_errors::error_code!(E0772));
200200
err.set_primary_message(&format!(
201201
"{} has {} but calling `{}` introduces an implicit `'static` lifetime \

src/librustc_lint/unused.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ trait UnusedDelimLint {
422422
lhs_needs_parens
423423
|| (followed_by_block
424424
&& match inner.kind {
425-
ExprKind::Ret(_) | ExprKind::Break(..) => true,
425+
ExprKind::Ret(_) | ExprKind::Break(..) | ExprKind::Yield(..) => true,
426426
_ => parser::contains_exterior_struct_lit(&inner),
427427
})
428428
}

src/librustc_metadata/rmeta/encoder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ impl<'a, 'tcx> SpecializedEncoder<Span> for EncodeContext<'a, 'tcx> {
267267
// real code should never need to care about this.
268268
//
269269
// 2. Using `Span::def_site` or `Span::mixed_site` will not
270-
// include any hygiene information associated with the defintion
270+
// include any hygiene information associated with the definition
271271
// site. This means that a proc-macro cannot emit a `$crate`
272272
// identifier which resolves to one of its dependencies,
273273
// which also should never come up in practice.

src/librustc_middle/ty/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ struct OpaqueTypeExpander<'tcx> {
585585
found_recursion: bool,
586586
/// Whether or not to check for recursive opaque types.
587587
/// This is `true` when we're explicitly checking for opaque type
588-
/// recursion, and 'false' otherwise to avoid unecessary work.
588+
/// recursion, and 'false' otherwise to avoid unnecessary work.
589589
check_recursion: bool,
590590
tcx: TyCtxt<'tcx>,
591591
}

src/librustc_mir/transform/promote_consts.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ impl<'tcx> Validator<'_, 'tcx> {
524524
// The `is_empty` predicate is introduced to exclude the case
525525
// where the projection operations are [ .field, * ].
526526
// The reason is because promotion will be illegal if field
527-
// accesses preceed the dereferencing.
527+
// accesses precede the dereferencing.
528528
// Discussion can be found at
529529
// https://github.com/rust-lang/rust/pull/74945#discussion_r463063247
530530
// There may be opportunity for generalization, but this needs to be

src/librustc_mir_build/thir/pattern/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ crate enum PatKind<'tcx> {
133133
var: hir::HirId,
134134
ty: Ty<'tcx>,
135135
subpattern: Option<Pat<'tcx>>,
136-
/// Is this the leftmost occurance of the binding, i.e., is `var` the
136+
/// Is this the leftmost occurrence of the binding, i.e., is `var` the
137137
/// `HirId` of this pattern?
138138
is_primary: bool,
139139
},

src/librustc_session/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1717,7 +1717,7 @@ pub fn build_session_options(matches: &getopts::Matches) -> Options {
17171717
}
17181718

17191719
// `-Z instrument-coverage` implies:
1720-
// * `-Z symbol-mangling-version=v0` - to ensure consistent and reversable name mangling.
1720+
// * `-Z symbol-mangling-version=v0` - to ensure consistent and reversible name mangling.
17211721
// Note, LLVM coverage tools can analyze coverage over multiple runs, including some
17221722
// changes to source code; so mangled names must be consistent across compilations.
17231723
// * `-C link-dead-code` - so unexecuted code is still counted as zero, rather than be

src/librustc_session/parse.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ impl GatedSpans {
6363

6464
#[derive(Default)]
6565
pub struct SymbolGallery {
66-
/// All symbols occurred and their first occurrance span.
66+
/// All symbols occurred and their first occurrence span.
6767
pub symbols: Lock<BTreeMap<Symbol, Span>>,
6868
}
6969

src/librustc_span/hygiene.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ impl UseSpecializedDecodable for ExpnId {}
891891

892892
#[derive(Default)]
893893
pub struct HygieneEncodeContext {
894-
/// All `SyntaxContexts` for which we have writen `SyntaxContextData` into crate metadata.
894+
/// All `SyntaxContexts` for which we have written `SyntaxContextData` into crate metadata.
895895
/// This is `None` after we finish encoding `SyntaxContexts`, to ensure
896896
/// that we don't accidentally try to encode any more `SyntaxContexts`
897897
serialized_ctxts: Lock<FxHashSet<SyntaxContext>>,
@@ -961,7 +961,7 @@ pub struct HygieneDecodeContext {
961961
// Maps serialized `SyntaxContext` ids to a `SyntaxContext` in the current
962962
// global `HygieneData`. When we deserialize a `SyntaxContext`, we need to create
963963
// a new id in the global `HygieneData`. This map tracks the ID we end up picking,
964-
// so that multiple occurences of the same serialized id are decoded to the same
964+
// so that multiple occurrences of the same serialized id are decoded to the same
965965
// `SyntaxContext`
966966
remapped_ctxts: Lock<Vec<Option<SyntaxContext>>>,
967967
// The same as `remapepd_ctxts`, but for `ExpnId`s

src/librustc_typeck/check/coercion.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ impl<'f, 'tcx> Coerce<'f, 'tcx> {
456456
//
457457
// Both of these trigger a special `CoerceUnsized`-related error (E0376)
458458
//
459-
// We can take advantage of this fact to avoid performing unecessary work.
459+
// We can take advantage of this fact to avoid performing unnecessary work.
460460
// If either `source` or `target` is a type variable, then any applicable impl
461461
// would need to be generic over the self-type (`impl<T> CoerceUnsized<SomeType> for T`)
462462
// or generic over the `CoerceUnsized` type parameter (`impl<T> CoerceUnsized<T> for

src/test/assembly/asm/aarch64-modifiers.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// assembly-output: emit-asm
33
// compile-flags: -O
44
// compile-flags: --target aarch64-unknown-linux-gnu
5+
// needs-llvm-components: aarch64
56

67
#![feature(no_core, lang_items, rustc_attrs)]
78
#![crate_type = "rlib"]

src/test/assembly/asm/aarch64-types.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// no-system-llvm
22
// assembly-output: emit-asm
33
// compile-flags: --target aarch64-unknown-linux-gnu
4+
// needs-llvm-components: aarch64
45

56
#![feature(no_core, lang_items, rustc_attrs, repr_simd)]
67
#![crate_type = "rlib"]

src/test/assembly/asm/arm-modifiers.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// compile-flags: -O
44
// compile-flags: --target armv7-unknown-linux-gnueabihf
55
// compile-flags: -C target-feature=+neon
6+
// needs-llvm-components: arm
67

78
#![feature(no_core, lang_items, rustc_attrs, repr_simd)]
89
#![crate_type = "rlib"]

src/test/assembly/asm/arm-types.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// assembly-output: emit-asm
33
// compile-flags: --target armv7-unknown-linux-gnueabihf
44
// compile-flags: -C target-feature=+neon
5+
// needs-llvm-components: arm
56

67
#![feature(no_core, lang_items, rustc_attrs, repr_simd)]
78
#![crate_type = "rlib"]

src/test/assembly/asm/hexagon-types.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// no-system-llvm
22
// assembly-output: emit-asm
33
// compile-flags: --target hexagon-unknown-linux-musl
4+
// needs-llvm-components: hexagon
45

56
#![feature(no_core, lang_items, rustc_attrs, repr_simd)]
67
#![crate_type = "rlib"]

src/test/assembly/asm/nvptx-types.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// assembly-output: emit-asm
33
// compile-flags: --target nvptx64-nvidia-cuda
44
// compile-flags: --crate-type cdylib
5+
// needs-llvm-components: nvptx
56

67
#![feature(no_core, lang_items, rustc_attrs)]
78
#![no_core]

src/test/assembly/asm/riscv-modifiers.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// compile-flags: -O
44
// compile-flags: --target riscv64gc-unknown-linux-gnu
55
// compile-flags: -C target-feature=+f
6+
// needs-llvm-components: riscv
67

78
#![feature(no_core, lang_items, rustc_attrs)]
89
#![crate_type = "rlib"]

src/test/assembly/asm/riscv-types.rs

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
//[riscv64] compile-flags: --target riscv64imac-unknown-none-elf
55
//[riscv32] compile-flags: --target riscv32imac-unknown-none-elf
66
// compile-flags: -C target-feature=+d
7+
// needs-llvm-components: riscv
78

89
#![feature(no_core, lang_items, rustc_attrs)]
910
#![crate_type = "rlib"]

src/test/codegen/abi-efiapi.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
// Checks if the correct annotation for the efiapi ABI is passed to llvm.
22

3-
// revisions:x86_64 i686 arm
4-
3+
// revisions:x86_64 i686 aarch64 arm riscv
54
// min-llvm-version: 9.0
5+
// needs-llvm-components: aarch64 arm riscv
66

77
//[x86_64] compile-flags: --target x86_64-unknown-uefi
88
//[i686] compile-flags: --target i686-unknown-linux-musl
9+
//[aarch64] compile-flags: --target aarch64-unknown-none
910
//[arm] compile-flags: --target armv7r-none-eabi
11+
//[riscv] compile-flags: --target riscv64gc-unknown-none-elf
1012
// compile-flags: -C no-prepopulate-passes
1113

1214
#![crate_type = "lib"]
@@ -22,6 +24,8 @@ trait Copy { }
2224

2325
//x86_64: define win64cc void @has_efiapi
2426
//i686: define void @has_efiapi
27+
//aarch64: define void @has_efiapi
2528
//arm: define void @has_efiapi
29+
//riscv: define void @has_efiapi
2630
#[no_mangle]
2731
pub extern "efiapi" fn has_efiapi() {}

src/test/codegen/avr/avr-func-addrspace.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// compile-flags: -O --target=avr-unknown-unknown --crate-type=rlib
2+
// needs-llvm-components: avr
23

34
// This test validates that function pointers can be stored in global variables
45
// and called upon. It ensures that Rust emits function pointers in the correct

src/test/pretty/block-comment-wchar.pp

-2
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,13 @@
7373
*/
7474

7575

76-
7776
/* */
7877

7978
/*
8079
Hello from offset 6
8180
Space 6+2: compare A
8281
Ogham Space Mark 6+2: compare B
8382
*/
84-
8583
/* */
8684

8785
/*

src/test/pretty/issue-74745.rs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// ignore-tidy-trailing-newlines
2+
// pretty-compare-only
3+
4+
/*
5+
*/

src/test/ui/consts/const_in_pattern/warn_corner_cases.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// const-evaluator computes a value that *does* meet the conditions for
1111
// structural-match, but the const expression itself has abstractions (like
1212
// calls to const functions) that may fit better with a type-based analysis
13-
// rather than a committment to a specific value.
13+
// rather than a commitment to a specific value.
1414

1515
#![warn(indirect_structural_match)]
1616

src/test/ui/consts/issue-73976-polymorphic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This test is from #73976. We previously did not check if a type is monomorphized
2-
// before calculating its type id, which leads to the bizzare behaviour below that
2+
// before calculating its type id, which leads to the bizarre behaviour below that
33
// TypeId of a generic type does not match itself.
44
//
55
// This test case should either run-pass or be rejected at compile time.

src/test/ui/issues/issue-37131.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
// compile-flags: --target=thumbv6m-none-eabi
55
// ignore-arm
6+
// needs-llvm-components: arm
67

78
// error-pattern:target may not be installed
89
fn main() { }

0 commit comments

Comments
 (0)