Skip to content

Commit 7ee7207

Browse files
committed
Auto merge of #51363 - japaric:stable-used, r=cramertj
stabilize #[used] closes #40289 RFC for stabilization: rust-lang/rfcs#2386 r? @Centril Where should this be documented? Currently the documentation is in the unstable book
2 parents 1f02f23 + d37658a commit 7ee7207

File tree

11 files changed

+11
-205
lines changed

11 files changed

+11
-205
lines changed

src/doc/unstable-book/src/language-features/used.md

-157
This file was deleted.

src/libstd/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@
307307
#![feature(doc_cfg)]
308308
#![feature(doc_masked)]
309309
#![feature(doc_spotlight)]
310-
#![cfg_attr(windows, feature(used))]
310+
#![cfg_attr(all(windows, stage0), feature(used))]
311311
#![feature(doc_alias)]
312312
#![feature(doc_keyword)]
313313
#![feature(panic_info_message)]

src/libsyntax/feature_gate.rs

+4-7
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,6 @@ declare_features! (
349349
// Allows the `try {...}` expression
350350
(active, try_blocks, "1.29.0", Some(31436), None),
351351

352-
// Used to preserve symbols (see llvm.used)
353-
(active, used, "1.18.0", Some(40289), None),
354-
355352
// Allows module-level inline assembly by way of global_asm!()
356353
(active, global_asm, "1.18.0", Some(35119), None),
357354

@@ -677,6 +674,9 @@ declare_features! (
677674
// Allows all literals in attribute lists and values of key-value pairs.
678675
(accepted, attr_literals, "1.30.0", Some(34981), None),
679676
(accepted, panic_handler, "1.30.0", Some(44489), None),
677+
// Used to preserve symbols (see llvm.used)
678+
(accepted, used, "1.30.0", Some(40289), None),
679+
680680
);
681681

682682
// If you change this, please modify src/doc/unstable-book as well. You must
@@ -1071,10 +1071,7 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG
10711071
"unwind_attributes",
10721072
"#[unwind] is experimental",
10731073
cfg_fn!(unwind_attributes))),
1074-
("used", Whitelisted, Gated(
1075-
Stability::Unstable, "used",
1076-
"the `#[used]` attribute is an experimental feature",
1077-
cfg_fn!(used))),
1074+
("used", Whitelisted, Ungated),
10781075

10791076
// used in resolve
10801077
("prelude_import", Whitelisted, Gated(Stability::Unstable,

src/test/run-make-fulldeps/used/used.rs

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

1111
#![crate_type = "lib"]
12-
#![feature(used)]
1312

1413
#[used]
1514
static FOO: u32 = 0;

src/test/ui/feature-gates/feature-gate-linker-flavor.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -15,6 +15,5 @@
1515

1616
#[used]
1717
fn foo() {}
18-
//~^^ ERROR the `#[used]` attribute is an experimental feature
1918

2019
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
error[E0658]: the `#[used]` attribute is an experimental feature (see issue #40289)
1+
error: attribute must be applied to a `static` variable
22
--> $DIR/feature-gate-linker-flavor.rs:16:1
33
|
44
LL | #[used]
55
| ^^^^^^^
6-
|
7-
= help: add #![feature(used)] to the crate attributes to enable
86

97
error: aborting due to previous error
108

11-
For more information about this error, try `rustc --explain E0658`.

src/test/ui/feature-gates/feature-gate-used.rs

-15
This file was deleted.

src/test/ui/feature-gates/feature-gate-used.stderr

-11
This file was deleted.

src/test/ui/run-pass/issues/issue-41628.rs

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

1111
// run-pass
1212
#![deny(dead_code)]
13-
#![feature(used)]
1413

1514
#[used]
1615
static FOO: u32 = 0;

src/test/ui/used.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(used)]
12-
1311
#[used]
1412
static FOO: u32 = 0; // OK
1513

src/test/ui/used.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
error: attribute must be applied to a `static` variable
2-
--> $DIR/used.rs:16:1
2+
--> $DIR/used.rs:14:1
33
|
44
LL | #[used] //~ ERROR attribute must be applied to a `static` variable
55
| ^^^^^^^
66

77
error: attribute must be applied to a `static` variable
8-
--> $DIR/used.rs:19:1
8+
--> $DIR/used.rs:17:1
99
|
1010
LL | #[used] //~ ERROR attribute must be applied to a `static` variable
1111
| ^^^^^^^
1212

1313
error: attribute must be applied to a `static` variable
14-
--> $DIR/used.rs:22:1
14+
--> $DIR/used.rs:20:1
1515
|
1616
LL | #[used] //~ ERROR attribute must be applied to a `static` variable
1717
| ^^^^^^^
1818

1919
error: attribute must be applied to a `static` variable
20-
--> $DIR/used.rs:25:1
20+
--> $DIR/used.rs:23:1
2121
|
2222
LL | #[used] //~ ERROR attribute must be applied to a `static` variable
2323
| ^^^^^^^

0 commit comments

Comments
 (0)