Skip to content

Commit b7b85ce

Browse files
committed
Auto merge of rust-lang#117255 - TaKO8Ki:rollup-dhoz1gg, r=TaKO8Ki
Rollup of 5 pull requests Successful merges: - rust-lang#116858 (Suggest assoc fn `new` when trying to build tuple struct with private fields) - rust-lang#116868 (Tweak suggestion span for outer attr and point at item following invalid inner attr) - rust-lang#117025 (Cleanup and improve `--check-cfg` implementation) - rust-lang#117170 (Add support for i586-unknown-netbsd as target.) - rust-lang#117240 (Fix documentation typo in std::iter::Iterator::collect_into) r? `@ghost` `@rustbot` modify labels: rollup
2 parents aa91057 + 248bb0c commit b7b85ce

36 files changed

+539
-359
lines changed

compiler/rustc_interface/src/interface.rs

+198-200
Large diffs are not rendered by default.

compiler/rustc_llvm/build.rs

+8
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,14 @@ fn main() {
258258
{
259259
println!("cargo:rustc-link-lib=z");
260260
} else if target.contains("netbsd") {
261+
// On NetBSD/i386, gcc and g++ is built for i486 (to maximize backward compat)
262+
// However, LLVM insists on using 64-bit atomics.
263+
// This gives rise to a need to link rust itself with -latomic for these targets
264+
if target.starts_with("i586")
265+
|| target.starts_with("i686")
266+
{
267+
println!("cargo:rustc-link-lib=atomic");
268+
}
261269
println!("cargo:rustc-link-lib=z");
262270
println!("cargo:rustc-link-lib=execinfo");
263271
}

compiler/rustc_passes/messages.ftl

+3
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,9 @@ passes_invalid_attr_at_crate_level =
393393
`{$name}` attribute cannot be used at crate level
394394
.suggestion = perhaps you meant to use an outer attribute
395395
396+
passes_invalid_attr_at_crate_level_item =
397+
the inner attribute doesn't annotate this {$kind}
398+
396399
passes_invalid_deprecation_version =
397400
invalid deprecation version found
398401
.label = invalid deprecation version

compiler/rustc_passes/src/check_attr.rs

+21-1
Original file line numberDiff line numberDiff line change
@@ -2534,10 +2534,30 @@ fn check_invalid_crate_level_attr(tcx: TyCtxt<'_>, attrs: &[Attribute]) {
25342534
if attr.style == AttrStyle::Inner {
25352535
for attr_to_check in ATTRS_TO_CHECK {
25362536
if attr.has_name(*attr_to_check) {
2537+
let item = tcx
2538+
.hir()
2539+
.items()
2540+
.map(|id| tcx.hir().item(id))
2541+
.find(|item| !item.span.is_dummy()) // Skip prelude `use`s
2542+
.map(|item| errors::ItemFollowingInnerAttr {
2543+
span: item.ident.span,
2544+
kind: item.kind.descr(),
2545+
});
25372546
tcx.sess.emit_err(errors::InvalidAttrAtCrateLevel {
25382547
span: attr.span,
2539-
snippet: tcx.sess.source_map().span_to_snippet(attr.span).ok(),
2548+
sugg_span: tcx
2549+
.sess
2550+
.source_map()
2551+
.span_to_snippet(attr.span)
2552+
.ok()
2553+
.filter(|src| src.starts_with("#!["))
2554+
.map(|_| {
2555+
attr.span
2556+
.with_lo(attr.span.lo() + BytePos(1))
2557+
.with_hi(attr.span.lo() + BytePos(2))
2558+
}),
25402559
name: *attr_to_check,
2560+
item,
25412561
});
25422562
}
25432563
}

compiler/rustc_passes/src/errors.rs

+15-5
Original file line numberDiff line numberDiff line change
@@ -856,8 +856,15 @@ pub struct UnknownLangItem {
856856

857857
pub struct InvalidAttrAtCrateLevel {
858858
pub span: Span,
859-
pub snippet: Option<String>,
859+
pub sugg_span: Option<Span>,
860860
pub name: Symbol,
861+
pub item: Option<ItemFollowingInnerAttr>,
862+
}
863+
864+
#[derive(Clone, Copy)]
865+
pub struct ItemFollowingInnerAttr {
866+
pub span: Span,
867+
pub kind: &'static str,
861868
}
862869

863870
impl IntoDiagnostic<'_> for InvalidAttrAtCrateLevel {
@@ -871,15 +878,18 @@ impl IntoDiagnostic<'_> for InvalidAttrAtCrateLevel {
871878
diag.set_arg("name", self.name);
872879
// Only emit an error with a suggestion if we can create a string out
873880
// of the attribute span
874-
if let Some(src) = self.snippet {
875-
let replacement = src.replace("#!", "#");
881+
if let Some(span) = self.sugg_span {
876882
diag.span_suggestion_verbose(
877-
self.span,
883+
span,
878884
fluent::passes_suggestion,
879-
replacement,
885+
String::new(),
880886
rustc_errors::Applicability::MachineApplicable,
881887
);
882888
}
889+
if let Some(item) = self.item {
890+
diag.set_arg("kind", item.kind);
891+
diag.span_label(item.span, fluent::passes_invalid_attr_at_crate_level_item);
892+
}
883893
diag
884894
}
885895
}

compiler/rustc_resolve/src/late/diagnostics.rs

+20-1
Original file line numberDiff line numberDiff line change
@@ -1570,7 +1570,26 @@ impl<'a: 'ast, 'ast, 'tcx> LateResolutionVisitor<'a, '_, 'ast, 'tcx> {
15701570
err.set_primary_message(
15711571
"cannot initialize a tuple struct which contains private fields",
15721572
);
1573-
1573+
if !def_id.is_local()
1574+
&& self
1575+
.r
1576+
.tcx
1577+
.inherent_impls(def_id)
1578+
.iter()
1579+
.flat_map(|impl_def_id| {
1580+
self.r.tcx.provided_trait_methods(*impl_def_id)
1581+
})
1582+
.any(|assoc| !assoc.fn_has_self_parameter && assoc.name == sym::new)
1583+
{
1584+
// FIXME: look for associated functions with Self return type,
1585+
// instead of relying only on the name and lack of self receiver.
1586+
err.span_suggestion_verbose(
1587+
span.shrink_to_hi(),
1588+
"you might have meant to use the `new` associated function",
1589+
"::new".to_string(),
1590+
Applicability::MaybeIncorrect,
1591+
);
1592+
}
15741593
// Use spans of the tuple struct definition.
15751594
self.r.field_def_ids(def_id).map(|field_ids| {
15761595
field_ids
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
use crate::spec::{Cc, Lld, LinkerFlavor, StackProbeType, Target, TargetOptions};
2+
3+
pub fn target() -> Target {
4+
let mut base = super::netbsd_base::opts();
5+
base.cpu = "pentium".into();
6+
base.max_atomic_width = Some(64);
7+
base.pre_link_args
8+
.entry(LinkerFlavor::Gnu(Cc::Yes, Lld::No))
9+
.or_default()
10+
.push("-m32".into());
11+
base.stack_probes = StackProbeType::Call;
12+
13+
Target {
14+
llvm_target: "i586-unknown-netbsdelf".into(),
15+
pointer_width: 32,
16+
data_layout: "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
17+
f64:32:64-f80:32-n8:16:32-S128"
18+
.into(),
19+
arch: "x86".into(),
20+
options: TargetOptions { mcount: "__mcount".into(), ..base },
21+
}
22+
}

compiler/rustc_target/src/spec/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1426,6 +1426,7 @@ supported_targets! {
14261426
("aarch64_be-unknown-netbsd", aarch64_be_unknown_netbsd),
14271427
("armv6-unknown-netbsd-eabihf", armv6_unknown_netbsd_eabihf),
14281428
("armv7-unknown-netbsd-eabihf", armv7_unknown_netbsd_eabihf),
1429+
("i586-unknown-netbsd", i586_unknown_netbsd),
14291430
("i686-unknown-netbsd", i686_unknown_netbsd),
14301431
("powerpc-unknown-netbsd", powerpc_unknown_netbsd),
14311432
("riscv64gc-unknown-netbsd", riscv64gc_unknown_netbsd),

library/core/src/iter/traits/iterator.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2142,7 +2142,7 @@ pub trait Iterator {
21422142
/// passed collection. The collection is then returned, so the call chain
21432143
/// can be continued.
21442144
///
2145-
/// This is useful when you already have a collection and wants to add
2145+
/// This is useful when you already have a collection and want to add
21462146
/// the iterator items to it.
21472147
///
21482148
/// This method is a convenience method to call [Extend::extend](trait.Extend.html),

src/doc/unstable-book/src/compiler-flags/check-cfg.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ fn do_mumble_frotz() {}
139139

140140
```bash
141141
# This turns on checking for feature values, but not for condition names.
142-
rustc --check-cfg 'configure(feature, values("zapping", "lasers"))' \
142+
rustc --check-cfg 'cfg(feature, values("zapping", "lasers"))' \
143143
--check-cfg 'cfg(any())' \
144144
--cfg 'feature="zapping"' -Z unstable-options
145145
```

tests/ui/attributes/unix_sigpipe/unix_sigpipe-crate.stderr

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@ error: `unix_sigpipe` attribute cannot be used at crate level
33
|
44
LL | #![unix_sigpipe = "inherit"]
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6+
LL |
7+
LL | fn main() {}
8+
| ---- the inner attribute doesn't annotate this function
69
|
710
help: perhaps you meant to use an outer attribute
811
|
9-
LL | #[unix_sigpipe = "inherit"]
10-
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~
12+
LL - #![unix_sigpipe = "inherit"]
13+
LL + #[unix_sigpipe = "inherit"]
14+
|
1115

1216
error: aborting due to previous error
1317

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
error: invalid `--check-cfg` argument: `cfg(any(),values())` (`values()` cannot be specified before the names)
2+

tests/ui/check-cfg/invalid-arguments.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// revisions: multiple_values_any not_empty_any not_empty_values_any
77
// revisions: values_any_missing_values values_any_before_ident ident_in_values_1
88
// revisions: ident_in_values_2 unknown_meta_item_1 unknown_meta_item_2 unknown_meta_item_3
9-
// revisions: mixed_values_any mixed_any giberich
9+
// revisions: mixed_values_any mixed_any any_values giberich unterminated
1010
//
1111
// compile-flags: -Z unstable-options
1212
// [anything_else]compile-flags: --check-cfg=anything_else(...)
@@ -29,6 +29,8 @@
2929
// [unknown_meta_item_3]compile-flags: --check-cfg=cfg(foo,values(test()))
3030
// [mixed_values_any]compile-flags: --check-cfg=cfg(foo,values("bar",any()))
3131
// [mixed_any]compile-flags: --check-cfg=cfg(any(),values(any()))
32+
// [any_values]compile-flags: --check-cfg=cfg(any(),values())
3233
// [giberich]compile-flags: --check-cfg=cfg(...)
34+
// [unterminated]compile-flags: --check-cfg=cfg(
3335

3436
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
error: invalid `--check-cfg` argument: `cfg(` (expected `cfg(name, values("value1", "value2", ... "valueN"))`)
2+

0 commit comments

Comments
 (0)