Skip to content

Commit 651ea8e

Browse files
committed
Stabilized #[repr(align(x))] attribute (RFC 1358)
1 parent fdc18b3 commit 651ea8e

14 files changed

+20
-65
lines changed

src/liballoc/tests/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#![feature(pattern)]
2424
#![feature(placement_in_syntax)]
2525
#![feature(rand)]
26-
#![feature(repr_align)]
2726
#![feature(slice_rotate)]
2827
#![feature(splice)]
2928
#![feature(str_escape)]

src/libstd/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@
296296
#![feature(ptr_internals)]
297297
#![feature(rand)]
298298
#![feature(raw)]
299-
#![feature(repr_align)]
300299
#![feature(rustc_attrs)]
301300
#![feature(sip_hash_13)]
302301
#![feature(slice_bytes)]
@@ -323,6 +322,7 @@
323322
#![feature(doc_spotlight)]
324323
#![cfg_attr(test, feature(update_panic_count))]
325324
#![cfg_attr(windows, feature(used))]
325+
#![cfg_attr(stage0, feature(repr_align))]
326326

327327
#![default_lib_allocator]
328328

src/libsyntax/feature_gate.rs

+17-13
Original file line numberDiff line numberDiff line change
@@ -343,9 +343,6 @@ declare_features! (
343343
// Allows the `catch {...}` expression
344344
(active, catch_expr, "1.17.0", Some(31436)),
345345

346-
// Allows `repr(align(u16))` struct attribute (RFC 1358)
347-
(active, repr_align, "1.17.0", Some(33626)),
348-
349346
// Used to preserve symbols (see llvm.used)
350347
(active, used, "1.18.0", Some(40289)),
351348

@@ -546,6 +543,8 @@ declare_features! (
546543
// Allows the sysV64 ABI to be specified on all platforms
547544
// instead of just the platforms on which it is the C ABI
548545
(accepted, abi_sysv64, "1.24.0", Some(36167)),
546+
// Allows `repr(align(16))` struct attribute (RFC 1358)
547+
(accepted, repr_align, "1.24.0", Some(33626)),
549548
);
550549

551550
// If you change this, please modify src/doc/unstable-book as well. You must
@@ -1456,15 +1455,25 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
14561455
}
14571456
}
14581457

1458+
// allow attr_literals in #[repr(align(x))]
1459+
let mut is_repr_align = false;
1460+
if attr.path == "repr" {
1461+
if let Some(content) = attr.meta_item_list() {
1462+
is_repr_align = content.iter().any(|c| c.check_name("align"));
1463+
}
1464+
}
1465+
14591466
if self.context.features.proc_macro && attr::is_known(attr) {
14601467
return
14611468
}
14621469

1463-
let meta = panictry!(attr.parse_meta(self.context.parse_sess));
1464-
if contains_novel_literal(&meta) {
1465-
gate_feature_post!(&self, attr_literals, attr.span,
1466-
"non-string literals in attributes, or string \
1467-
literals in top-level positions, are experimental");
1470+
if !is_repr_align {
1471+
let meta = panictry!(attr.parse_meta(self.context.parse_sess));
1472+
if contains_novel_literal(&meta) {
1473+
gate_feature_post!(&self, attr_literals, attr.span,
1474+
"non-string literals in attributes, or string \
1475+
literals in top-level positions, are experimental");
1476+
}
14681477
}
14691478
}
14701479

@@ -1522,11 +1531,6 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
15221531
gate_feature_post!(&self, repr_simd, attr.span,
15231532
"SIMD types are experimental and possibly buggy");
15241533
}
1525-
if item.check_name("align") {
1526-
gate_feature_post!(&self, repr_align, attr.span,
1527-
"the struct `#[repr(align(u16))]` attribute \
1528-
is experimental");
1529-
}
15301534
if item.check_name("transparent") {
15311535
gate_feature_post!(&self, repr_transparent, attr.span,
15321536
"the `#[repr(transparent)]` attribute \

src/test/codegen/align-struct.rs

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313

1414
#![crate_type = "lib"]
1515

16-
#![feature(attr_literals)]
17-
#![feature(repr_align)]
18-
1916
#[repr(align(64))]
2017
pub struct Align64(i32);
2118
// CHECK: %Align64 = type { [0 x i32], i32, [15 x i32] }

src/test/compile-fail/conflicting-repr-hints.rs

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
// except according to those terms.
1010

1111
#![allow(dead_code)]
12-
#![feature(attr_literals)]
13-
#![feature(repr_align)]
1412

1513
#[repr(C)]
1614
enum A { A }

src/test/compile-fail/repr-align.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010
#![allow(dead_code)]
11-
#![feature(attr_literals)]
12-
#![feature(repr_align)]
1311

1412
#[repr(align(16.0))] //~ ERROR: invalid `repr(align)` attribute: not an unsuffixed integer
1513
struct A(i32);

src/test/compile-fail/repr-packed-contains-align.rs

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
#![feature(attr_literals)]
11-
#![feature(repr_align)]
1210
#![feature(untagged_unions)]
1311
#![allow(dead_code)]
1412

src/test/run-pass/align-struct.rs

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
#![feature(attr_literals)]
11-
#![feature(repr_align)]
1210
#![feature(box_syntax)]
1311

1412
use std::mem;

src/test/run-pass/union/union-align.rs

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

11-
#![feature(attr_literals)]
12-
#![feature(repr_align)]
1311
#![feature(untagged_unions)]
1412

1513
use std::mem::{size_of, size_of_val, align_of, align_of_val};

src/test/ui/feature-gate-repr_align.rs

-15
This file was deleted.

src/test/ui/feature-gate-repr_align.stderr

-10
This file was deleted.

src/test/ui/print_type_sizes/repr-align.rs

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
// It avoids using u64/i64 because on some targets that is only 4-byte
1919
// aligned (while on most it is 8-byte aligned) and so the resulting
2020
// padding and overall computed sizes can be quite different.
21-
#![feature(attr_literals)]
22-
#![feature(repr_align)]
2321
#![feature(start)]
2422
#![allow(dead_code)]
2523

src/test/ui/span/gated-features-attr-spans.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#![feature(attr_literals)]
1212

13-
#[repr(align(16))] //~ ERROR is experimental
13+
#[repr(align(16))]
1414
struct Gem {
1515
mohs_hardness: u8,
1616
poofed: bool,

src/test/ui/span/gated-features-attr-spans.stderr

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
error[E0658]: the struct `#[repr(align(u16))]` attribute is experimental (see issue #33626)
2-
--> $DIR/gated-features-attr-spans.rs:13:1
3-
|
4-
13 | #[repr(align(16))] //~ ERROR is experimental
5-
| ^^^^^^^^^^^^^^^^^^
6-
|
7-
= help: add #![feature(repr_align)] to the crate attributes to enable
8-
91
error[E0658]: SIMD types are experimental and possibly buggy (see issue #27731)
102
--> $DIR/gated-features-attr-spans.rs:20:1
113
|
@@ -30,5 +22,5 @@ warning: `#[must_use]` on functions is experimental (see issue #43302)
3022
|
3123
= help: add #![feature(fn_must_use)] to the crate attributes to enable
3224

33-
error: aborting due to 2 previous errors
25+
error: aborting due to previous error
3426

0 commit comments

Comments
 (0)