Skip to content

Commit 3fa0308

Browse files
authored
Unrolled build for rust-lang#116829
Rollup merge of rust-lang#116829 - fmease:rust-aint-c, r=compiler-errors Make `#[repr(Rust)]` incompatible with other (non-modifier) representation hints like `C` and `simd` Read more about this change here: rust-lang#116829 (comment). Fixes [after backport] rust-lang#116825.
2 parents 020d008 + d0b99e3 commit 3fa0308

File tree

4 files changed

+80
-4
lines changed

4 files changed

+80
-4
lines changed

compiler/rustc_passes/src/check_attr.rs

+10-3
Original file line numberDiff line numberDiff line change
@@ -1776,6 +1776,7 @@ impl CheckAttrVisitor<'_> {
17761776
.collect();
17771777

17781778
let mut int_reprs = 0;
1779+
let mut is_explicit_rust = false;
17791780
let mut is_c = false;
17801781
let mut is_simd = false;
17811782
let mut is_transparent = false;
@@ -1787,7 +1788,9 @@ impl CheckAttrVisitor<'_> {
17871788
}
17881789

17891790
match hint.name_or_empty() {
1790-
sym::Rust => {}
1791+
sym::Rust => {
1792+
is_explicit_rust = true;
1793+
}
17911794
sym::C => {
17921795
is_c = true;
17931796
match target {
@@ -1897,12 +1900,16 @@ impl CheckAttrVisitor<'_> {
18971900

18981901
// Error on repr(transparent, <anything else>).
18991902
if is_transparent && hints.len() > 1 {
1900-
let hint_spans: Vec<_> = hint_spans.clone().collect();
1903+
let hint_spans = hint_spans.clone().collect();
19011904
self.tcx.sess.emit_err(errors::TransparentIncompatible {
19021905
hint_spans,
19031906
target: target.to_string(),
19041907
});
19051908
}
1909+
if is_explicit_rust && (int_reprs > 0 || is_c || is_simd) {
1910+
let hint_spans = hint_spans.clone().collect();
1911+
self.tcx.sess.emit_err(errors::ReprConflicting { hint_spans });
1912+
}
19061913
// Warn on repr(u8, u16), repr(C, simd), and c-like-enum-repr(C, u8)
19071914
if (int_reprs > 1)
19081915
|| (is_simd && is_c)
@@ -1919,7 +1926,7 @@ impl CheckAttrVisitor<'_> {
19191926
CONFLICTING_REPR_HINTS,
19201927
hir_id,
19211928
hint_spans.collect::<Vec<Span>>(),
1922-
errors::ReprConflicting,
1929+
errors::ReprConflictingLint,
19231930
);
19241931
}
19251932
}

compiler/rustc_passes/src/errors.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -558,9 +558,16 @@ pub struct ReprIdent {
558558
pub span: Span,
559559
}
560560

561+
#[derive(Diagnostic)]
562+
#[diag(passes_repr_conflicting, code = "E0566")]
563+
pub struct ReprConflicting {
564+
#[primary_span]
565+
pub hint_spans: Vec<Span>,
566+
}
567+
561568
#[derive(LintDiagnostic)]
562569
#[diag(passes_repr_conflicting, code = "E0566")]
563-
pub struct ReprConflicting;
570+
pub struct ReprConflictingLint;
564571

565572
#[derive(Diagnostic)]
566573
#[diag(passes_used_static)]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#[repr(C, Rust)] //~ ERROR conflicting representation hints
2+
struct S {
3+
a: i32,
4+
}
5+
6+
7+
#[repr(Rust)] //~ ERROR conflicting representation hints
8+
#[repr(C)]
9+
struct T {
10+
a: i32,
11+
}
12+
13+
#[repr(Rust, u64)] //~ ERROR conflicting representation hints
14+
enum U {
15+
V,
16+
}
17+
18+
#[repr(Rust, simd)]
19+
//~^ ERROR conflicting representation hints
20+
//~| ERROR SIMD types are experimental and possibly buggy
21+
struct F32x4(f32, f32, f32, f32);
22+
23+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
error[E0658]: SIMD types are experimental and possibly buggy
2+
--> $DIR/explicit-rust-repr-conflicts.rs:18:1
3+
|
4+
LL | #[repr(Rust, simd)]
5+
| ^^^^^^^^^^^^^^^^^^^
6+
|
7+
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
8+
= help: add `#![feature(repr_simd)]` to the crate attributes to enable
9+
10+
error[E0566]: conflicting representation hints
11+
--> $DIR/explicit-rust-repr-conflicts.rs:1:8
12+
|
13+
LL | #[repr(C, Rust)]
14+
| ^ ^^^^
15+
16+
error[E0566]: conflicting representation hints
17+
--> $DIR/explicit-rust-repr-conflicts.rs:7:8
18+
|
19+
LL | #[repr(Rust)]
20+
| ^^^^
21+
LL | #[repr(C)]
22+
| ^
23+
24+
error[E0566]: conflicting representation hints
25+
--> $DIR/explicit-rust-repr-conflicts.rs:13:8
26+
|
27+
LL | #[repr(Rust, u64)]
28+
| ^^^^ ^^^
29+
30+
error[E0566]: conflicting representation hints
31+
--> $DIR/explicit-rust-repr-conflicts.rs:18:8
32+
|
33+
LL | #[repr(Rust, simd)]
34+
| ^^^^ ^^^^
35+
36+
error: aborting due to 5 previous errors
37+
38+
Some errors have detailed explanations: E0566, E0658.
39+
For more information about an error, try `rustc --explain E0566`.

0 commit comments

Comments
 (0)