Skip to content

Commit 42b75a5

Browse files
committed
Warn about multiple conflicting #[repr] hints
Closes #34622
1 parent eac4146 commit 42b75a5

File tree

5 files changed

+52
-5
lines changed

5 files changed

+52
-5
lines changed

src/librustc/diagnostics.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1804,4 +1804,5 @@ register_diagnostics! {
18041804
E0490, // a value of type `..` is borrowed for too long
18051805
E0491, // in type `..`, reference has a longer lifetime than the data it...
18061806
E0495, // cannot infer an appropriate lifetime due to conflicting requirements
1807+
E0566 // conflicting representation hints
18071808
}

src/librustc/hir/check_attr.rs

+18-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ impl<'a> CheckAttrVisitor<'a> {
5252
}
5353
};
5454

55+
let mut conflicting_reprs = 0;
5556
for word in words {
5657
let name = match word.name() {
5758
Some(word) => word,
@@ -60,13 +61,24 @@ impl<'a> CheckAttrVisitor<'a> {
6061

6162
let message = match &*name {
6263
"C" => {
64+
conflicting_reprs += 1;
6365
if target != Target::Struct && target != Target::Enum {
6466
"attribute should be applied to struct or enum"
6567
} else {
6668
continue
6769
}
6870
}
69-
"packed" | "simd" => {
71+
"packed" => {
72+
// Do not increment conflicting_reprs here, because "packed"
73+
// can be used to modify another repr hint
74+
if target != Target::Struct {
75+
"attribute should be applied to struct"
76+
} else {
77+
continue
78+
}
79+
}
80+
"simd" => {
81+
conflicting_reprs += 1;
7082
if target != Target::Struct {
7183
"attribute should be applied to struct"
7284
} else {
@@ -76,6 +88,7 @@ impl<'a> CheckAttrVisitor<'a> {
7688
"i8" | "u8" | "i16" | "u16" |
7789
"i32" | "u32" | "i64" | "u64" |
7890
"isize" | "usize" => {
91+
conflicting_reprs += 1;
7992
if target != Target::Enum {
8093
"attribute should be applied to enum"
8194
} else {
@@ -87,6 +100,10 @@ impl<'a> CheckAttrVisitor<'a> {
87100

88101
span_err!(self.sess, attr.span, E0517, "{}", message);
89102
}
103+
if conflicting_reprs > 1 {
104+
span_warn!(self.sess, attr.span, E0566,
105+
"conflicting representation hints");
106+
}
90107
}
91108

92109
fn check_attribute(&self, attr: &ast::Attribute, target: Target) {

src/libsyntax/attr.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -904,9 +904,8 @@ pub fn find_repr_attrs(diagnostic: &Handler, attr: &Attribute) -> Vec<ReprAttr>
904904
}
905905
};
906906

907-
match hint {
908-
Some(h) => acc.push(h),
909-
None => { }
907+
if let Some(h) = hint {
908+
acc.push(h);
910909
}
911910
} else {
912911
span_err!(diagnostic, item.span, E0553,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![feature(rustc_attrs)]
12+
#![allow(dead_code)]
13+
14+
#[repr(C)]
15+
enum A { A }
16+
17+
#[repr(u64)]
18+
enum B { B }
19+
20+
#[repr(C, u64)] //~ WARNING conflicting representation hints
21+
enum C { C }
22+
23+
#[repr(u32, u64)] //~ WARNING conflicting representation hints
24+
enum D { D }
25+
26+
#[repr(C, packed)]
27+
struct E(i32);
28+
29+
#[rustc_error]
30+
fn main() {} //~ ERROR compilation successful

src/test/run-pass/mir_adt_construction.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#[repr(C, u32)]
11+
#[repr(C)]
1212
enum CEnum {
1313
Hello = 30,
1414
World = 60

0 commit comments

Comments
 (0)